﻿/* ── Hero ───────────────────────────────────────────────── */
.rc-hero {
    background: linear-gradient(135deg, #8b0000 0%, #c0392b 100%);
    padding: 2.5rem 0 2rem;
    color: #fff;
}

.rc-hero-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.rc-hero-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.rc-hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 .2rem;
}

.rc-hero-sub {
    margin: 0;
    opacity: .8;
    font-size: .95rem;
}

/* ── Breadcrumb ─────────────────────────────────────────── */
.rc-breadcrumb {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: .6rem 0;
}

    .rc-breadcrumb .breadcrumb {
        font-size: .85rem;
    }

    .rc-breadcrumb a {
        color: #c0392b;
        text-decoration: none;
    }

        .rc-breadcrumb a:hover {
            text-decoration: underline;
        }

/* ── Section ────────────────────────────────────────────── */
.rc-section {
    padding: 3rem 0 4rem;
}

/* ── Card ───────────────────────────────────────────────── */
.rc-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0,0,0,.07);
    transition: box-shadow .25s, transform .25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .rc-card:hover {
        box-shadow: 0 8px 28px rgba(0,0,0,.13);
        transform: translateY(-4px);
    }

.rc-card-img-wrap {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.rc-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}

.rc-card:hover .rc-card-img {
    transform: scale(1.05);
}

.rc-card-img-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f3f5;
    font-size: 3rem;
    color: #adb5bd;
}

.rc-card-body {
    padding: 1.15rem 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    flex: 1;
}

.rc-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a2e;
}

.rc-card-meta {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    color: #6c757d;
}

    .rc-card-meta i {
        color: #c0392b;
    }

.rc-card-phone {
    color: inherit;
    text-decoration: none;
}

    .rc-card-phone:hover {
        color: #c0392b;
    }

.rc-card-link {
    margin-top: auto;
    font-size: .85rem;
    font-weight: 600;
    color: #c0392b;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .3rem;
    transition: gap .2s;
}

    .rc-card-link:hover {
        gap: .6rem;
    }

/* ── Detail page ────────────────────────────────────────── */
.rc-detail-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #1a1a2e;
}

.rc-detail-desc {
    font-size: .97rem;
    line-height: 1.75;
    color: #444;
}

.rc-detail-img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: #f1f3f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #adb5bd;
}

.rc-detail-phone-box {
    background: #fff5f5;
    border: 1px solid rgba(192,57,43,.2);
    border-radius: 10px;
    padding: .9rem 1.1rem;
}

.rc-detail-phone-label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #c0392b;
    margin-bottom: .3rem;
}

.rc-detail-phone-number {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    text-decoration: none;
}

    .rc-detail-phone-number:hover {
        color: #c0392b;
    }

/* ── Empty state ────────────────────────────────────────── */
.rc-empty {
    text-align: center;
    padding: 4rem 0;
    color: #adb5bd;
}

    .rc-empty i {
        font-size: 3rem;
        display: block;
        margin-bottom: .75rem;
    }
