/* ==========================================================================
   about.css — Dedicated Stylesheet for about.html (About Us)
   ========================================================================== */

/* ============ HERO BANNER ============ */
.about-hero {
    position: relative;
    height: 384px;
    background: var(--dark-green);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

/* --- Hero Background & Overlay --- */
.about-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #1b4332 0%, rgba(27,67,50,0.72) 55%, rgba(27,67,50,0.18) 100%);
}

.about-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px 40px;
    text-align: right;
}

/* --- Breadcrumb Navigation --- */
.about-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    direction: rtl;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 500;
}

.about-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.about-hero__breadcrumb a:hover {
    color: #fff;
}

.about-hero__breadcrumb .sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.about-hero__breadcrumb .current {
    color: var(--green-500);
    font-weight: 600;
}

/* --- Hero Title --- */
.about-hero__title {
    font-weight: 900;
    font-size: 48px;
    line-height: 48px;
    color: #fff;
}

/* ============ ABOUT CONTENT SECTION ============ */
.about-media--dark::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27,67,50,0.85) 0%, rgba(27,67,50,0.2) 50%, transparent 100%);
    border-radius: 24px;
    pointer-events: none;
}

/* --- Media Badges --- */
.about-media__badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 5;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 16px;
    padding: 12px 20px;
}

.about-media__badge b {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.about-media__badge small {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 400;
    margin-top: 2px;
}
