/* ==========================================================================
   methodology.css — Dedicated Stylesheet for methodology.html (Methodology)
   ========================================================================== */

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

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

.page-hero-short__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #1b4332 0%, rgba(27,67,50,0.6) 50%, rgba(0,0,0,0) 100%);
}

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

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

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

.page-hero-short__breadcrumb a:hover {
    color: #fff;
}

.page-hero-short__breadcrumb .sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.page-hero-short__breadcrumb .current {
    color: var(--green-500);
    font-weight: 600;
}

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

/* ============ METHODOLOGY ROWS ============ */
.method-section {
    background: var(--bg-light);
    padding: 64px 0;
}

.method-rows {
    direction: rtl;
    text-align: right;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* --- Method Row Card --- */
.method-row {
    direction: rtl;
    text-align: right;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.method-row:hover {
    box-shadow: 0 20px 40px rgba(45,106,79,0.08);
    transform: translateY(-4px);
}

/* --- Method Text & Description --- */
.method-row__text {
    flex: 1;
    text-align: right;
}

.method-row__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
}

.method-row__desc {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 29.25px;
    margin-top: 12px;
}
