.brc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.brc-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border: 1px solid #f2a65a;
    border-radius: 6px;
    padding: 24px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    height: 100%;
    box-sizing: border-box;
}
.brc-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}
.brc-card__image {
    width: 100%;
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
}
.brc-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.brc-card__title {
    margin: 20px 0;
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    font-weight: 500;
    word-break: break-word;
}
.brc-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    margin-top: auto;
    padding: 14px 32px;
    background-color: #f07a1e;
    color: #ffffff;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.brc-card:hover .brc-card__btn {
    background-color: #d86410;
    color: #ffffff;
}
@media (max-width: 1024px) {
    .brc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .brc-grid { grid-template-columns: 1fr; }
    .brc-card__image { height: 340px; }
}
