/* ===== Page Wrapper ===== */
.brandhub-page {
        position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    font-family:Helvetica ;
}

/* ===== Header Section ===== */
.brandhub-header {
    position: relative;
    height: 680px;
    overflow: hidden;
}

/* Full width background (Astra-safe) */
.brandhub-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--brandhub-bg);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Header content aligned to container */
.brandhub-header-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.brandhub-header h1 {
    color: #fff;
    font-size: 68px;
    display: inline-block;
   
    padding: 10px 15px;
    font-family: 'Source Sans 3', sans-serif !important;
}

/* First word – normal */
.brandhub-header h1 .first-word {
    font-weight: normal;
}

/* Rest words – bold */
.brandhub-header h1 .rest-words {
    font-weight: 700;
}


/* ===== Main Container ===== */
.brandhub-container {
    max-width: 1200px;
    width: 1050px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ===== Story Section ===== */
.brandhub-story {
    display: flex;
    gap: 12%;
    margin-bottom: 40px;
}


.story-title {
    width: 15%;
    font-weight: 800;
    font-size: 52px;
    line-height: 1.09;
    text-transform: uppercase;
    font-family : Source Sans 3 !important;
    color: #000;
}
.story-desc {
    width: 85%;
    text-align: justify;
    font-family: Helvetica !important;
    font-size:15px;
    font-weight:500;
    color:#000;
    line-height: 1.45;
}

/* ===== Story Books ===== */
.brandhub-books {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;   /* 🔥 center from middle */
    margin-bottom: 40px;
   
}

.brandhub-books .book {
    width: 160px;              /* 👈 item width */
    flex: 0 0 160px;           /* prevent stretch */
}

.brandhub-books .book img {
    width: 100%;
    height: 240px;          /* 🔥 same height for all */
    object-fit: cover;      /* crop but keep ratio */
    display: block;
    border-radius: 10px;
}


.brandhub-books img:hover {
    transform: scale(1.05);
}

/* ===== Download Section ===== */
.brandhub-downloads-title {
    background: #007B09;
    color: #fff;
    padding: 6px 20px;
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 600;
    align-items: center;
    justify-content: space-between;
    max-width: 267px;
    font-family: Helvetica !important;
}

.brandhub-downloads-title i {
    color: #fff;
    font-size: 22px;
}


.brandhub-downloads {
     padding: 4px;
}

.brandhub-downloads h2 {
    margin-bottom: 20px;
}

.brandhub-downloads {
    max-width: 1050px;
}

.file-row {
    display: flex;
    align-items: center;
    background: #f2f2f2;
    padding: 5px 16px;
    margin-bottom: 12px;
   
}

.file-icon {
    font-size: 35px;
    color: #666;
    margin-right: 15px;
    width: 50px;
    text-align: center;
}

.file-info {
    flex: 1;
    line-height: normal;
}

.file-name {
    font-weight: 600;
    color: #01A550;
}

.file-size {
    font-size: 14px;
    color: #777;
    margin-top: 1px;
}
file-download{
padding : 20px !important;
}

.file-download a {
    font-size: 20px;
    color: #444;
    transition: color 0.2s ease;
     padding-right: 18px
}

.file-download a:hover {
    color: #000;
}

.load-more {
    text-align: right;
    margin-top: 8px;
}

.load-more button#load-more-btn {
    color: #01A550;
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    border-radius: 2px;
    padding: 6px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more button#load-more-btn:hover {
    background: #01A550;
    color: #fff;
    box-shadow: 0 4px 10px rgba(1, 165, 80, 0.3);
    transform: translateY(-1px);
}

.brandhub-back-home {
    border-top: 2px solid #01A550; /* Green line */
    margin-top: 20px;
    padding: 12px 0;
    text-align: left;
}

.brandhub-back-home a {
    color: #01A550;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px; /* arrow and text gap */
    transition: all 0.3s ease;
    font-family: Helvetica !important;
}

.brandhub-back-home a:hover {
    color: #028A3B; /* darker green on hover */
}

.brandhub-back-home i.fa {
    font-size: 16px;
}


/* ============================= */
/* ===== Tablet (≤ 1024px) ===== */
/* ============================= */
@media (max-width: 1024px) {

    .brandhub-header {
        height: 520px;
    }

    .brandhub-header h1 {
        font-size: 48px;
    }

    .brandhub-container {
        width: 100%;
        padding: 30px 16px;
    }

    .brandhub-story {
        gap: 6%;
    }

    .story-title {
        font-size: 40px;
        width: 22%;
    }

    .story-desc {
        width: 78%;
        font-size: 14.5px;
    }

    .brandhub-books {
        gap: 28px;
    }

    .brandhub-books .book {
        width: 150px;
        flex: 0 0 150px;
    }

    .brandhub-books .book img {
        height: 220px;
    }
}

/* ============================= */
/* ===== Mobile (≤ 768px) ===== */
/* ============================= */
@media (max-width: 768px) {

    /* Full width fix */
    .brandhub-page {
        width: 100%;
        left: auto;
        right: auto;
        margin-left: 0;
        margin-right: 0;
    }

    /* Header */
    .brandhub-header {
        height: 420px;
    }

    .brandhub-header-inner {
        padding: 16px;
        text-align: center;
    }

    .brandhub-header h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    /* Story */
    .brandhub-story {
        flex-direction: column;
        gap: 16px;
    }

    .story-title {
        width: 100%;
        font-size: 32px;
        text-align: left;
    }

    .story-desc {
        width: 100%;
        font-size: 14px;
        line-height: 1.55;
    }

    /* Books grid */
    .brandhub-books {
        gap: 20px;
    }

    .brandhub-books .book {
        width: 46%;
        flex: 0 0 46%;
    }

    .brandhub-books .book img {
        height: 210px;
    }

    /* Downloads */
    .file-row {
        padding: 8px 12px;
    }

    .file-icon {
        font-size: 28px;
        width: 40px;
        margin-right: 10px;
    }

    .file-name {
        font-size: 14px;
    }

    .file-size {
        font-size: 12px;
    }

    .file-download a {
        font-size: 18px;
        padding-right: 8px;
    }

    .brandhub-downloads-title {
        font-size: 18px;
        max-width: 100%;
    }
}

/* ============================= */
/* ===== Small Mobile (≤ 480px) ===== */
/* ============================= */
@media (max-width: 480px) {

    .brandhub-header {
        height: 360px;
    }

    .brandhub-header h1 {
        font-size: 28px;
    }

    .story-title {
        font-size: 26px;
    }

    .brandhub-books .book {
        width: 100%;
        flex: 0 0 100%;
    }

    .brandhub-books .book img {
        height: 240px;
    }

    .load-more {
        text-align: center;
    }
}