/**
 * new_mediatwopage.css
 * – media-one-page: In The Media listing (media-page.php, new-media-one-page.php)
 * – media-two-page: In The Media article detail (new-media-two-page.php)
 */

/* ============================================
   MEDIA ONE PAGE – listing page styles
   ============================================ */
/* Banner: full-width, below fixed header, mediabg.jpg */
.new-media-page .media-banner-section {
    position: relative;
    width: 100%;
    min-height: 59vh;
    max-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.new-contact-page .contact-banner-section {
    min-height: 58vh;
}

.new-career-page .career-banner-section {
    min-height: 58vh;
}

.new-media-page .media-banner-section .media-banner-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.new-media-page .media-banner-section .media-banner-image-mobile {
    display: none;
}

.new-media-page .media-banner-section .media-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

@media (max-width: 768px) {
    .new-media-page
        .media-banner-section
        .media-banner-image:not(.media-banner-image-mobile) {
        display: none;
    }
    .new-media-page .media-banner-section .media-banner-image-mobile {
        display: block;
    }
}

@media (max-width: 518px) {
    .new-media-page .media-banner-section {
        margin-top: 52px;
    }
}
.new-media-page .media-banner-section .media-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
    box-sizing: border-box;
}

.new-media-page .media-banner-title {
    position: relative;
    z-index: 2;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
    margin: 0;
}

.new-media-page .media-banner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: capitalize;
}

.new-media-page .media-breadcrumb-link {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #ffffffcc;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.new-media-page .media-breadcrumb-link:hover {
    opacity: 0.9;
}

.new-media-page .media-breadcrumb-link-blog {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #ffff;
}

.new-media-page .media-breadcrumb-arrow {
    width: 14px;
    height: 13px;
    display: block;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.new-media-page .media-breadcrumb-current {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #fff;
}

/* Orange News Ticker Bar - marquee */
.media-news-ticker {
    width: 100%;
    background: #f6883e;
    padding: 18px 0;
    box-sizing: border-box;
    overflow: hidden;
}

.media-news-ticker-track {
    display: flex;
    width: max-content;
    animation: media-ticker-marquee 40s linear infinite;
}

.media-news-ticker-track:hover {
    animation-play-state: paused;
}

.media-news-ticker-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 10px;
    flex-shrink: 0;
}

.media-news-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    white-space: nowrap;
}

@keyframes media-ticker-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.media-news-badge {
    display: inline-block;
    background: #ed1b1b;
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: 15px;
    /* font-weight: 600; */
    padding: 3px 5px;
    /* text-transform: uppercase; */
    letter-spacing: 0.02em;
}

.media-news-star {
    display: inline-block;
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
}

.media-news-headline {
    font-family: "Lato", sans-serif;
    /* font-weight: 600; */
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0;
    color: #fff;
    white-space: nowrap;
}
.new-media-page .media-breadcrumb-link:hover {
    color: rgb(255, 255, 255);
}

/* News & Research Section (one page) */
.news-research-section {
    width: 100%;
    background: #fcfcfc;
    padding: 2.5rem 0 0;
    box-sizing: border-box;
}

.news-research-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
    box-sizing: border-box;
}

.news-research-title {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0;
    color: #111111;
    margin: 0 0 50px 0;
}

.news-research-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.news-research-filters {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.news-filter-option {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
}

.news-filter-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.news-filter-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid #c4c4c4;
    background: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.news-filter-icon::after {
    content: "";
    width: 14px;
    height: 7px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    margin-bottom: 3px;
    opacity: 0;
}

.news-filter-option--selected .news-filter-icon {
    background: #1e3a5f;
    border-color: #1e3a5f;
}

.news-filter-option--selected .news-filter-icon::after {
    opacity: 1;
}

.news-filter-label {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #111111;
    transition: opacity 0.2s ease;
}

.news-filter-option:not(.news-filter-option--selected) .news-filter-label {
    opacity: 0.6;
}

.news-filter-option--selected .news-filter-label {
    opacity: 1;
}

.news-research-sort {
    flex-shrink: 0;
    margin-top: 25px;
}

.news-sort-wrap {
    position: relative;
    display: inline-block;
}

.news-sort-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-width: 160px;
    padding: 10px 64px 10px 14px;
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #515151;
    background: #fff;
    border: 1px solid #515151;
    border-radius: 6px;
    cursor: pointer;
    box-sizing: border-box;
    vertical-align: middle;
}

.news-sort-select:focus {
    outline: none;
    border-color: #1e3a5f;
}

.news-sort-arrow-circle {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #d8d8d8;
    background: #515151;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.news-sort-arrow-down {
    width: 7px;
    height: auto;
    display: block;
    transform: rotate(268deg);
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.arrow-right-img {
    transform: rotate(180deg);
}

.news-research-separator {
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    margin-top: 1rem;
}

/* News cards grid (one page) */
.media-cards-grid-wrap {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.media-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 2rem;
}

.media-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 16px 0px #0000001a;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.media-card-logo {
    margin-bottom: 12px;
}

.media-card-logo img {
    max-height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.media-card-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Inter, "Open Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #888;
    margin-bottom: 12px;
}

.media-card-calendar-icon {
    flex-shrink: 0;
    color: #999;
}

.media-card-title {
    font-family: "Lato", Inter, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.35;
    color: #333;
    margin: 0 0 14px 0;
    padding-left: 14px;
    border-left: 3px solid #d0d0d0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.media-card-readmore {
    font-family: Inter, "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #e85d04;
    text-decoration: none;
    transition: color 0.2s ease;
}

.media-card-readmore:hover {
    color: #c41e00;
}

.media-cards-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.media-pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #d0d0d0;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease;
}

.media-pagination-dot--active,
.media-pagination-dot:hover {
    background: #515151;
}

/* One page responsive */
@media (max-width: 789px) {
    .media-news-headline {
        font-size: 14px;
    }

    .media-news-ticker-inner {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .media-news-item {
        white-space: nowrap;
    }
}

@media (max-width: 769px) {
    .new-media-page .media-banner-section .media-banner-title {
        font-size: 24px;
    }

    .new-media-page .media-banner-breadcrumb {
        font-size: 14px;
    }

    .new-media-page .media-breadcrumb-link,
    .new-media-page .media-breadcrumb-current {
        font-size: 14px;
    }

    .new-media-page .media-banner-section .media-banner-content {
        padding-left: 30px;
        padding-right: 30px;
    }

    .news-research-inner {
        padding-left: 30px;
        padding-right: 30px;
    }

    .media-news-ticker {
        padding: 12px 0;
    }

    .media-news-ticker-inner {
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .news-research-title {
        margin: 0px 0px 15px;
        font-size: 24px;
    }

    .news-filter-label {
        font-size: 14px;
    }

    .news-research-controls {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .news-research-filters {
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .news-research-sort {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .news-research-sort .news-sort-select {
        width: 100%;
        max-width: 200px;
        font-size: 14px;
    }

    .media-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .media-card {
        padding: 20px;
    }

    .media-card-title {
        font-size: 15px;
    }
}

@media (max-width: 560px) {
    .media-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .new-media-page .media-banner-section .media-banner-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .news-research-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 380px) {
    .new-media-page .media-banner-section .media-banner-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .news-research-inner {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Section 10 – one page (Got a project? / Request a Call Back) */
.new-media-page .section-10 {
    width: 100%;
    padding: 0 50px;
    gap: var(--spacing-base, 1rem);
    display: flex;
    position: relative;
    background: #fff url("../images/new_theme/formbgimage.png") no-repeat center
        center;
    background-size: cover;
    overflow: hidden;
    justify-content: center;
}

.new-media-page .section-10::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: url("../images/new_theme/contact-us-left.png");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.new-media-page .section-10::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url("../images/new_theme/contact-us-right.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.new-media-page .section-10-content {
    width: 100%;
    max-width: 620px;
    min-height: 116px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 7px;
}

.new-media-page .section-10-content h2 {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 5vw, 36px);
    line-height: 1.3;
    text-align: center;
    color: #2d2d2d;
    margin: 0 0 0.5rem 0;
}

.new-media-page .section-10-content b {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: inherit;
    line-height: inherit;
    color: #e85d04 !important;
}

.new-media-page .section-10-content p {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    color: #555;
    margin: 0;
}

.new-media-page .section-10-contact-us {
    width: 100%;
    max-width: 824px;
    min-height: 481px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
    padding: 56px 0;
}

.new-media-page .section-10-contact-us-form {
    width: 100%;
    max-width: 824px;
    background: #fff;
    border-radius: 12px;
    margin-top: 60px;
}

.new-media-page .callback-form {
    width: 100%;
    max-width: 824px;
    /* min-height: 350px; */
    height: auto;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    padding: 55px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    justify-content: center;
}

.new-media-page .callback-form-title {
    position: absolute;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.3;
    color: #111;
    top: -19px;
    left: 3rem;
    padding: 0 1rem;
    background: #fff;
}

.new-media-page .callback-form-row {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.new-media-page .callback-form-row:first-of-type {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.new-media-page .callback-form input {
    width: 100%;
    height: 50px;
    padding: 8px 1rem;
    border-radius: 8px;
    background: #f5f5f5;
    outline: none;
    border: 1px solid transparent;
    font-family: Inter, sans-serif;
    font-size: 15px;
    box-sizing: border-box;
}

.new-media-page .callback-form textarea {
    width: 100%;
    height: 50px;
    padding: 8px 1rem;
    border-radius: 8px;
    background: #f5f5f5;
    outline: none;
    border: 1px solid transparent;
    font-family: Inter, sans-serif;
    font-size: 15px;
    box-sizing: border-box;
}

.new-media-page .callback-form input:focus,
.new-media-page .callback-form textarea:focus {
    border-color: #e85d04;
    box-shadow: 0 0 0 2px rgba(232, 93, 4, 0.2);
}

.new-media-page .callback-form input::placeholder,
.new-media-page .callback-form textarea::placeholder {
    color: #999;
    font-weight: 400;
}

.new-media-page .callback-form textarea {
    resize: vertical;
    min-height: 55px;
}

.new-media-page .callback-form-submit {
    width: 100%;
    padding: 14px 2rem;
    background: #e85d04;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
    letter-spacing: 0;
    text-align: center;
}

.new-media-page .callback-form-submit:hover {
    background: #d14d04;
    transform: translateY(-1px);
}

.new-media-page .callback-form-submit:active {
    transform: translateY(0);
}

@media (max-width: 769px) {
    .new-media-page .section-10 {
        padding: 0px 24px 30px;
    }

    .new-media-page .section-10-content h2 {
        font-size: 24px;
    }

    .new-media-page .section-10-content h2 b {
        font-size: 20px;
    }

    .new-media-page .section-10-contact-us {
        padding: 0px 0 35px;
        gap: 30px;
    }

    .new-media-page .callback-form {
        padding: 25px 20px;
    }

    .new-media-page .callback-form-title {
        position: relative;
        top: 0;
        left: 0;
    }

    .new-media-page .callback-form-row:first-of-type {
        grid-template-columns: 1fr;
    }

    .new-media-page .callback-form input {
        height: 50px;
        font-size: 15px;
    }

    .new-media-page .callback-form textarea {
        height: 44px;
        min-height: 44px;
        font-size: 15px;
    }

    .new-media-page .callback-form-submit {
        padding: 14px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .new-media-page .section-10 {
        padding: 20px 20px;
    }

    .new-media-page .section-10-contact-us {
        padding: 0;
    }
}

/* ============================================
   MEDIA TWO PAGE – article detail page styles
   ============================================ */

/* ========== News & Media Section (tabs + sort, same as design) ========== */
.media-two-page .news-media-section {
    width: 100%;
    background: #fff;
    padding: 56px 50px 0px;
    box-sizing: border-box;
}

.media-two-page .news-media-inner {
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: border-box;
}

.media-two-page .news-media-title {
    font-family: Lato, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #111;
    margin: 0 0 45px 0;
}

.media-two-page .news-media-controls {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.media-two-page .news-media-tabs-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
}

.media-two-page .news-media-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 103px;
    row-gap: 0;
    flex-wrap: wrap;
    position: relative;
}

.media-two-page .news-media-tab {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #515151;
    background: none;
    border: none;
    padding: 0 0 15px 0;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}

.media-two-page .news-media-tab:hover {
    color: #555;
}

.media-two-page .news-media-tab--active {
    color: #111;
    font-weight: 600;
}

/* Sort by Year: below tabs, right-aligned */
.media-two-page .news-media-sort-row {
    padding-right: 50px;
    padding-bottom: 24px;
    margin-bottom: 16px;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

@media (max-width: 769px) {
    .media-two-page .news-media-sort-row {
        padding-right: 30px;
    }
}

@media (max-width: 518px) {
    .media-two-page .news-media-sort-row {
        justify-content: center !important;
        padding-right: 10px;
    }

    .media-two-page .news-media-section {
        padding: 30px 10px 0;
    }
}

.media-two-page .news-media-sort-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 6px 16px 6px 16px;
    border: 1px solid #515151;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    position: relative;
}

.media-two-page .news-media-sort-label {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    color: #515151;
    pointer-events: none;
    flex: 1;
    min-width: 0;
}

.media-two-page .news-media-sort-select {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 0;
    margin: 0;
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    box-sizing: border-box;
    z-index: 2;
}

.media-two-page .news-media-sort-select:focus {
    outline: none;
}

.media-two-page .news-media-sort-arrow {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #515151;
    background: #515151;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.media-two-page .news-media-sort-arrow-img {
    width: 15px;
    height: 15px;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Gray track line under tabs – only as wide as tab text */
.media-two-page .news-media-separator {
    flex-basis: 100%;
    width: 100%;
    height: 2px;
    margin-top: 10px;
    position: relative;
    min-width: 0;
    order: 1;
}

.media-two-page .news-media-separator-track {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: #00000033;
    display: block;
}

/* Orange line under active tab - width/position set by JS to match tab text */
.media-two-page .news-media-separator-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 120px;
    height: 2px;
    background: #e85d04;
    display: block;
    transition:
        left 0.25s ease,
        width 0.25s ease;
}

.media-two-page .news-media-separator-indicator::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: #e85d04;
}

/* Responsive: align orange indicator when tabs wrap */
@media (max-width: 768px) {
    .media-two-page .news-media-separator-indicator {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ========== Media Article Section – Template Grid (3 cols × 2 boxes) ========== */
.media-two-page .media-article-section.media-template-section {
    width: 100%;
    padding: 2.5rem 0 0px;
    box-sizing: border-box;
}

.media-two-page .media-article-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 70px;
    box-sizing: border-box;
}

/* PR Coverage: 4 cards in one row – shown only when PR Coverage tab is active */
.media-two-page .media-pr-coverage-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 0;
    width: 100%;
}
.media-two-page .media-pr-coverage-wrap > .media-template-box,
.media-two-page .media-pr-coverage-wrap > a.media-template-box {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}
.media-two-page .media-pr-coverage-wrap > a.media-template-box--link {
    text-align: left;
}
.media-two-page .media-pr-coverage-wrap .media-template-meta--top {
    justify-content: flex-start;
}
.media-two-page .media-pr-coverage-wrap .media-template-box-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}
.media-two-page .media-pr-coverage-wrap .media-template-desc {
    order: 3;
}
.media-two-page .media-pr-coverage-wrap .media-template-readmore-pr {
    order: 4;
    margin-top: auto;
    margin-bottom: 10px;
}
/* PR cards: max 2 lines, ellipsis */
.media-two-page .media-pr-coverage-wrap .media-template-title,
.media-two-page .media-pr-coverage-wrap .media-template-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 1024px) {
    .media-two-page .media-pr-coverage-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 518px) {
    .media-two-page .media-pr-coverage-wrap {
        grid-template-columns: 1fr;
    }
}

/* Print Media: 4 boxes in one row – shown only when Print Media tab is active */
.media-two-page .media-print-coverage-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 0;
    width: 100%;
}
.media-two-page .media-print-coverage-wrap > .media-template-box,
.media-two-page .media-print-coverage-wrap > a.media-template-box {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}
.media-two-page .media-print-coverage-wrap .media-print-card-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* margin-bottom: 12px; */
}
.media-two-page .media-print-coverage-wrap > a.media-template-box--link {
    text-align: left;
}
.media-two-page .media-print-coverage-wrap .media-print-card-source {
    display: block;
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    color: #000;
    margin-bottom: 10px;
}
.media-two-page .media-print-coverage-wrap .media-print-card-date {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 13px;
    color: #e85d04;
    line-height: 1.3;
    margin: 0 0 10px;
}
.media-two-page .media-print-coverage-wrap .media-template-image,
.media-two-page .media-print-coverage-wrap .media-template-image img {
    border-radius: 16px 16px 0 0;
}
.media-two-page .media-print-coverage-wrap .media-template-image {
    /* padding: 10px; */
    box-sizing: border-box;
}
.media-two-page .media-print-coverage-wrap .media-template-title,
.media-two-page .media-print-coverage-wrap .media-template-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 1024px) {
    .media-two-page .media-print-coverage-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 518px) {
    .media-two-page .media-print-coverage-wrap {
        grid-template-columns: 1fr;
    }
}

/* Flex: 3 columns, each column has 2 boxes in a row (stacked) */
.media-two-page .media-template-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
}

.media-two-page .media-template-col {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* 2024 selected: 4 cards in one horizontal row */
.media-two-page
    .media-template-grid.media-showing-year-2024
    .media-template-col:first-child {
    flex: 1 1 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
}
.media-two-page
    .media-template-grid.media-showing-year-2024
    .media-show-when-2024 {
    flex: 0 0 calc(25% - 18px);
    min-width: 0;
    box-sizing: border-box;
    /* padding: 10px; */
    border-radius: 16px;
}
@media (max-width: 1024px) {
    .media-two-page
        .media-template-grid.media-showing-year-2024
        .media-show-when-2024 {
        flex: 0 0 calc(50% - 12px);
    }
}
@media (max-width: 518px) {
    .media-two-page
        .media-template-grid.media-showing-year-2024
        .media-show-when-2024 {
        flex: 0 0 100%;
    }
}

/* 2024 cards: image zoom on hover */
.media-two-page .media-show-when-2024 .media-template-image {
    overflow: hidden;
}
.media-two-page .media-show-when-2024 .media-template-image img {
    transition: transform 0.35s ease;
}
.media-two-page .media-show-when-2024:hover .media-template-image img {
    transform: none;
}

/* 2023 selected: same horizontal layout as 2024 */
.media-two-page
    .media-template-grid.media-showing-year-2023
    .media-template-col:first-child {
    flex: 1 1 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
}
.media-two-page
    .media-template-grid.media-showing-year-2023
    .media-show-when-2023 {
    flex: 0 0 calc(25% - 18px);
    min-width: 0;
    box-sizing: border-box;
}
@media (max-width: 1024px) {
    .media-two-page
        .media-template-grid.media-showing-year-2023
        .media-show-when-2023 {
        flex: 0 0 calc(50% - 12px);
    }
}
@media (max-width: 518px) {
    .media-two-page
        .media-template-grid.media-showing-year-2023
        .media-show-when-2023 {
        flex: 0 0 100%;
    }
}

/* 2023 cards: image zoom on hover */
.media-two-page .media-show-when-2023 .media-template-image {
    overflow: hidden;
}
.media-two-page .media-show-when-2023 .media-template-image img {
    transition: transform 0.35s ease;
}
.media-two-page .media-show-when-2023:hover .media-template-image img {
    transform: none;
}

/* 2022 selected: same horizontal layout as 2024/2023 */
.media-two-page
    .media-template-grid.media-showing-year-2022
    .media-template-col:first-child {
    flex: 1 1 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
}
.media-two-page
    .media-template-grid.media-showing-year-2022
    .media-show-when-2022 {
    flex: 0 0 calc(25% - 18px);
    min-width: 0;
    box-sizing: border-box;
}
@media (max-width: 1024px) {
    .media-two-page
        .media-template-grid.media-showing-year-2022
        .media-show-when-2022 {
        flex: 0 0 calc(50% - 12px);
    }
}
@media (max-width: 518px) {
    .media-two-page
        .media-template-grid.media-showing-year-2022
        .media-show-when-2022 {
        flex: 0 0 100%;
    }
}

/* 2022 cards: image zoom on hover */
.media-two-page .media-show-when-2022 .media-template-image {
    overflow: hidden;
}
.media-two-page .media-show-when-2022 .media-template-image img {
    transition: transform 0.35s ease;
}
.media-two-page .media-show-when-2022:hover .media-template-image img {
    transform: none;
}

/* 2020 selected: same horizontal layout; cards open gallery (no redirect) */
.media-two-page
    .media-template-grid.media-showing-year-2020
    .media-template-col:first-child {
    flex: 1 1 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
}
.media-two-page
    .media-template-grid.media-showing-year-2020
    .media-show-when-2020 {
    flex: 0 0 calc(25% - 18px);
    min-width: 0;
    box-sizing: border-box;
}
@media (max-width: 1024px) {
    .media-two-page
        .media-template-grid.media-showing-year-2020
        .media-show-when-2020 {
        flex: 0 0 calc(50% - 12px);
    }
}
@media (max-width: 518px) {
    .media-two-page
        .media-template-grid.media-showing-year-2020
        .media-show-when-2020 {
        flex: 0 0 100%;
    }
}
.media-two-page .media-show-when-2020 .media-template-image {
    overflow: hidden;
}
.media-two-page .media-show-when-2020 .media-template-image img {
    transition: transform 0.35s ease;
}
.media-two-page .media-show-when-2020:hover .media-template-image img {
    transform: scale(1.08);
}

/* 2019 selected: same horizontal layout; cards open gallery (no redirect) */
.media-two-page
    .media-template-grid.media-showing-year-2019
    .media-template-col:first-child {
    flex: 1 1 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
}
.media-two-page
    .media-template-grid.media-showing-year-2019
    .media-show-when-2019 {
    flex: 0 0 calc(25% - 18px);
    min-width: 0;
    box-sizing: border-box;
}
@media (max-width: 1024px) {
    .media-two-page
        .media-template-grid.media-showing-year-2019
        .media-show-when-2019 {
        flex: 0 0 calc(50% - 12px);
    }
}
@media (max-width: 518px) {
    .media-two-page
        .media-template-grid.media-showing-year-2019
        .media-show-when-2019 {
        flex: 0 0 100%;
    }
}
.media-two-page .media-show-when-2019 .media-template-image {
    overflow: hidden;
}
.media-two-page .media-show-when-2019 .media-template-image img {
    transition: transform 0.35s ease;
}
.media-two-page .media-show-when-2019:hover .media-template-image img {
    transform: scale(1.08);
}

/* 2021 selected: same horizontal layout; cards open gallery (no redirect) */
.media-two-page
    .media-template-grid.media-showing-year-2021
    .media-template-col:first-child {
    flex: 1 1 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
}
.media-two-page
    .media-template-grid.media-showing-year-2021
    .media-show-when-2021 {
    flex: 0 0 calc(25% - 18px);
    min-width: 0;
    box-sizing: border-box;
}
@media (max-width: 1024px) {
    .media-two-page
        .media-template-grid.media-showing-year-2021
        .media-show-when-2021 {
        flex: 0 0 calc(50% - 12px);
    }
}
@media (max-width: 518px) {
    .media-two-page
        .media-template-grid.media-showing-year-2021
        .media-show-when-2021 {
        flex: 0 0 100%;
    }
}
.media-two-page .media-gallery-card {
    cursor: pointer;
}
.media-two-page .media-show-when-2021 .media-template-image {
    overflow: hidden;
}
.media-two-page .media-show-when-2021 .media-template-image img {
    transition: transform 0.35s ease;
}
.media-two-page .media-show-when-2021:hover .media-template-image img {
    transform: scale(1.08);
}

/* Hide header when any lightbox popup is open */
body.media-gallery-lightbox-open .new-header,
body.media-print-image-lightbox-open .new-header {
    visibility: hidden;
    pointer-events: none;
}

/* 2021 gallery lightbox popup */
.media-gallery-lightbox {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}
.media-gallery-lightbox.media-gallery-lightbox--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.media-gallery-lightbox[hidden] {
    display: flex !important;
}
.media-gallery-lightbox.media-gallery-lightbox--open[hidden] {
    display: flex !important;
}
.media-gallery-lightbox-backdrop {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}
.media-gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 10001;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s ease;
}
.media-gallery-lightbox-close svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.media-gallery-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}
.media-gallery-lightbox-prev,
.media-gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10001;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s ease;
}
@media (max-width: 518px) {
    .media-gallery-lightbox-prev,
    .media-gallery-lightbox-next {
        width: 35px;
        height: 35px;
    }
    .media-gallery-lightbox-close {
        width: 35px;
        height: 35px;
    }
}
@media (max-width: 410px) {
    .media-gallery-lightbox-img {
        width: 180px !important;
    }
}

.media-gallery-lightbox-prev .media-gallery-lightbox-arrow-img,
.media-gallery-lightbox-next .media-gallery-lightbox-arrow-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.media-gallery-lightbox-prev:hover,
.media-gallery-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}
.media-gallery-lightbox-prev {
    left: 24px;
}
.media-gallery-lightbox-next {
    right: 24px;
}
.media-gallery-lightbox-content {
    position: relative;
    z-index: 10000;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.media-gallery-lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Print Media: click card opens image lightbox */
body.media-print-image-lightbox-open {
    overflow: hidden;
}
.media-print-image-lightbox {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}
.media-print-image-lightbox.media-print-image-lightbox--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.media-print-image-lightbox[hidden] {
    display: flex !important;
}
.media-print-image-lightbox.media-print-image-lightbox--open[hidden] {
    display: flex !important;
}
.media-print-image-lightbox-backdrop {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}
.media-print-image-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 10001;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s ease;
}
.media-print-image-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}
.media-print-image-lightbox-close svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.media-print-image-lightbox-prev,
.media-print-image-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10001;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s ease;
}
.media-print-image-lightbox-prev .media-print-image-lightbox-arrow-img,
.media-print-image-lightbox-next .media-print-image-lightbox-arrow-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.media-print-image-lightbox-prev:hover,
.media-print-image-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}
.media-print-image-lightbox-prev {
    left: 24px;
}
.media-print-image-lightbox-next {
    right: 24px;
}
.media-print-image-lightbox-content {
    position: relative;
    z-index: 10000;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.media-print-image-lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Digital Media tab: 10 boxes line-by-line horizontally (5 per row) */
.media-two-page .media-template-grid--digital {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 24px;
}
.media-two-page .media-template-grid--digital .media-template-col {
    display: contents;
}
/* 3 boxes per line for Digital Media (10 boxes total) */
.media-two-page
    .media-template-grid--digital
    .media-template-box:not(.media-template-box--featured) {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    box-sizing: border-box;
}
@media (max-width: 769px) {
    .media-two-page
        .media-template-grid--digital
        .media-template-box:not(.media-template-box--featured) {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}
@media (max-width: 480px) {
    .media-two-page
        .media-template-grid--digital
        .media-template-box:not(.media-template-box--featured) {
        flex: 0 0 100%;
    }
}

/* First card slider – compact beige card: headline + source + line, SVG arrow buttons, slide animation */
.media-two-page .media-first-card-slider {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    /* min-height: 180px; */
    border: 0.89px solid #ededed;
    padding-bottom: 24px;
}
.media-two-page .media-first-card-slider-track {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.4s ease;
    will-change: transform;
}
.media-two-page .media-first-card-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
    padding: 24px 24px 0;
}
/* Compact slide: headline (reddish-brown) + source (grey-brown) + separator line – color theme as before */
.media-two-page .media-first-card-slide--compact {
    text-align: left;
}
.media-two-page .media-first-card-headline {
    font-family: Inter, "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    /* color: #f6883e; */
    color: #000;
    margin: 0 0 10px 0;
    letter-spacing: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.media-two-page .media-first-card-source {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #f6883e;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    display: block;
    margin-bottom: 10px;
    text-align: left;
}
.media-two-page .media-first-card-readmore {
    display: inline-block;
    margin-top: 6px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.2;
    color: #f6883e;
    text-decoration: underline;
    text-underline-offset: 2px;
}
/* Arrow buttons – SVG icons (leftarrowaldier.svg, rightarrowslider.svg), circular, thin border */
.media-two-page .media-first-card-slider-prev,
.media-two-page .media-first-card-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 30px;
    height: 30px;
    border: 1px solid #ebe8e4;
    border-radius: 50%;
    background: rgba(247, 244, 240, 0.9);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}
.media-two-page .media-first-card-slider-prev:hover,
.media-two-page .media-first-card-slider-next:hover {
    background: #f7f4f0;
    border-color: #825c4d;
}
.media-two-page .media-first-card-slider-prev {
    left: 12px;
}
.media-two-page .media-first-card-slider-next {
    right: 12px;
}
.media-two-page .media-first-card-slider-arrow-img {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
}
/* Digital grid: first card slider takes same width as one card */
.media-two-page .media-template-grid--digital .media-first-card-slider {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    box-sizing: border-box;
}
@media (max-width: 769px) {
    .media-two-page .media-template-grid--digital .media-first-card-slider {
        flex: 0 0 calc((100% - 24px) / 2);
    }
    .media-two-page .media-first-card-slide {
        padding: 28px 48px 24px;
    }
    .media-two-page .media-first-card-headline {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .media-two-page .media-template-grid--digital .media-first-card-slider {
        flex: 0 0 100%;
    }
    .media-two-page .media-first-card-slider-prev {
        left: 8px;
    }
    .media-two-page .media-first-card-slider-next {
        right: 8px;
    }
    .media-two-page .media-first-card-slider-prev,
    .media-two-page .media-first-card-slider-next {
        width: 36px;
        height: 36px;
    }
    .media-two-page .media-first-card-slider-arrow-img {
        width: 6px;
        height: 10px;
    }
    .media-two-page .media-first-card-slide {
        padding: 24px 24px 20px;
    }
    .media-two-page .media-first-card-headline {
        font-size: 15px;
    }
}

/* Each box – white card, rounded, shadow (template style) */
.media-two-page .media-template-box {
    background: #fff;
    border-radius: 16px;
    border: 0.89px solid #ededed;
    padding: 24px 24px 50px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
}

.media-two-page .media-template-box--featured {
    padding: 0;
}

/* Header: publication logo + date left, SAYA logo right */
.media-two-page .media-template-box-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.media-two-page .media-template-source-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.media-two-page .media-template-pub-logo {
    max-height: 44px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
}

.media-two-page .media-template-saya-logo {
    max-height: 36px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    flex-shrink: 0;
}

.media-two-page .media-template-date {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    color: #888888;
}

/* Meta row: source (orange) • calendar + date */
.media-two-page .media-template-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-family: Inter, "Open Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666;
    margin-bottom: 10px;
}

.media-two-page .media-template-meta--top {
    margin-bottom: 12px;
}

/* Calendar and Read More – comment out (hidden); dot next to calendar hidden too */
.media-two-page .media-template-calendar,
.media-two-page .media-template-date,
.media-two-page .media-template-meta-sep,
.media-two-page .media-template-readmore {
    display: none;
}

/* Regular media cards: text center, font-size/font-weight same as slider cards above */
.media-two-page a.media-template-box--link {
    text-align: center;
}
.media-two-page a.media-template-box--link .media-template-meta--top {
    justify-content: center;
}
.media-two-page .media-template-grid--digital a.media-template-box--link {
    text-align: left;
}
.media-two-page
    .media-template-grid--digital
    a.media-template-box--link
    .media-template-meta--top {
    justify-content: flex-start;
}

.media-two-page .media-template-source-name {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    color: #f6883e;
}

.media-two-page .media-template-meta-sep {
    color: #999;
}

.media-two-page .media-template-calendar {
    flex-shrink: 0;
    color: #999;
}

/* Headline / title – Inter, 18px, #0F172B; max 2 lines then … */
.media-two-page .media-template-title {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #0f172b;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.media-two-page .media-template-box--featured .media-template-title {
    margin-bottom: 6px;
}
.media-two-page .media-template-readmore-pr {
    display: inline-block;
    margin: 0 0 10px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.2;
    color: #f6883e;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.media-two-page .media-template-highlight {
    background: #c41e00;
    color: #fff;
    padding: 2px 6px;
}

/* Featured image */
.media-two-page .media-template-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 12px;
    aspect-ratio: 16/10;
    position: relative;
}

.media-two-page .media-template-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.media-two-page .media-template-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.38) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
}

/* Separate outer container for featured image – 10px padding */
/* .media-two-page .media-template-featured-image-outer {
    padding: 10px;
} */

.media-two-page .media-template-image--full {
    aspect-ratio: auto;
    margin-bottom: 0;
}

/* Text content in featured box – keep same padding as other boxes */
.media-two-page .media-template-box-content {
    padding: 10px;
    box-sizing: border-box;
}

.media-two-page .media-template-image--full img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px 16px 0 0;
    vertical-align: top;
}

.media-two-page .media-template-subtitle {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    color: #0f172b;
    margin: 0 0 12px 0;
}

/* Read More – orange, underlined */
.media-two-page .media-template-readmore {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    color: #f6883e;
    text-decoration: underline;
    margin-top: auto;
    transition: color 0.2s ease;
}

.media-two-page .media-template-readmore:hover {
    color: #c41e00;
}

/* Whole card as link (e.g. Economic Times first card) */
.media-two-page a.media-template-box--link {
    text-decoration: none;
    color: inherit;
}
.media-two-page a.media-template-box--link:hover {
    text-decoration: none;
    color: inherit;
}
.media-two-page a.media-template-box--link .media-template-title {
    color: #0f172b;
}
.media-two-page a.media-template-box--link:hover .media-template-readmore {
    color: #c41e00;
}

/* ========== Responsive – Template Flex ========== */
@media (max-width: 1100px) {
    .media-two-page .media-template-grid {
        gap: 20px;
    }

    .media-two-page .media-template-col {
        gap: 20px;
    }
}

@media (max-width: 769px) {
    .media-two-page .news-media-inner {
        padding-left: 30px;
        padding-right: 30px;
    }

    .media-two-page .news-media-title {
        font-size: 24px;
    }

    .media-two-page .news-media-tab {
        font-size: 16px;
    }

    /* .media-two-page .news-media-tabs {
        gap: 0px;
    } */
    .media-two-page .news-media-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .media-two-page .news-media-sort-row {
        margin-top: 1rem;
        justify-content: flex-end;
    }

    .media-two-page .media-article-inner {
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 0px;
    }

    .media-two-page .media-template-grid {
        gap: 18px;
    }

    .media-two-page .media-template-col {
        flex: 1 1 calc(50% - 9px);
        min-width: 0;
        gap: 18px;
    }

    .media-two-page .media-template-title {
        font-size: 16px;
        line-height: 24px;
    }

    .media-two-page .media-template-subtitle {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (max-width: 560px) {
    .media-two-page .media-template-col {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .media-two-page .news-media-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .media-two-page .news-media-title {
        font-size: 24px;
    }

    .media-two-page .news-media-tab {
        font-size: 14px;
    }

    .media-two-page .news-media-tabs {
        width: max-content;
        column-gap: 20px;
    }

    .media-two-page .media-article-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .media-two-page .media-template-title {
        font-size: 15px;
        line-height: 22px;
    }

    .media-two-page .media-template-subtitle {
        font-size: 15px;
        line-height: 22px;
    }

    .media-two-page .media-template-box-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 380px) {
    .media-two-page .media-article-inner {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ========== Get To Know Banner – media two page ========== */
.media-two-page .get-to-know-banner-wrap {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px;
    box-sizing: border-box;
}

@media (max-width: 769px) {
    .media-two-page .get-to-know-banner-wrap {
        padding: 50px 30px;
    }
}

@media (max-width: 518px) {
    .media-two-page .get-to-know-banner-wrap {
        padding: 30px 10px;
    }
}

/* ============================================
   CONTACT US PAGE – Contact Details section
   ============================================ */
.new-contact-page .contact-details-section {
    background: #fff;
    /* padding: 60px 50px 80px; */
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Career page: Current Openings header (title + subtitle left, search + dropdown right) */
.new-career-page .career-openings-section {
    background: #fff;
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: border-box;
}
.new-career-page .career-openings-inner {
    padding: 50px 50px 0px;
    box-sizing: border-box;
}
.new-career-page .contact-details-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.new-career-page .contact-details-header-left {
    flex: 0 0 auto;
}
.new-career-page .contact-details-header-title {
    font-family: "Lato", "Inter", sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #000;
    margin: 0 0 8px;
    line-height: 1.2;
}
.new-career-page .contact-details-header-subtitle {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #6b7280;
    margin: 0;
}
.new-career-page .contact-details-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}
.new-career-page .contact-details-header-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.new-career-page .contact-details-header-search-icon {
    position: absolute;
    left: 14px;
    width: 20px;
    height: 20px;
    color: #9ca3af;
    pointer-events: none;
}
.new-career-page .contact-details-header-search {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    padding: 12px 16px 12px 44px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    min-width: 220px;
    background: #fff;
    color: #000;
    box-sizing: border-box;
}
.new-career-page .contact-details-header-search::placeholder {
    color: #9ca3af;
}
.new-career-page .contact-details-header-dropdown-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.new-career-page .contact-details-header-dropdown {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    padding: 12px 40px 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    color: #374151;
    appearance: none;
    cursor: pointer;
    min-width: 140px;
    box-sizing: border-box;
}
.new-career-page .contact-details-header-dropdown-arrow {
    position: absolute;
    right: 12px;
    width: 18px;
    height: 18px;
    color: #6b7280;
    pointer-events: none;
}

/* Career page: job listing cards grid – design with #e57a35 (image style) */
.new-career-page .career-jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.new-career-page .career-job-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition:
        box-shadow 0.2s ease,
        border-color 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
}
.new-career-page .career-job-card:hover {
    border-color: #e0e0e0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.new-career-page .career-job-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 12px;
}
.new-career-page .career-job-card-new-badge {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.02em;
    color: #000;
    background: #fcd9c4;
    padding: 4px 10px;
    border-radius: 20px;
}
.new-career-page .career-job-card-new-badge--hide {
    visibility: hidden;
    padding: 4px 0;
    margin: 0;
}
.new-career-page .career-job-card-bookmark {
    width: 22px;
    height: 22px;
    color: #e57a35;
    flex-shrink: 0;
}
.new-career-page .career-job-card-title {
    font-family: "Lato", "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    color: #000;
    margin: 0 0 6px;
}
.new-career-page .career-job-card-dept {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 16px;
}
.new-career-page .career-job-card-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    flex: 1;
}
.new-career-page .career-job-card-detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #6b7280;
}
.new-career-page .career-job-card-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    color: #e57a35;
    flex-shrink: 0;
}
.new-career-page .career-job-card-actions {
    display: flex;
    align-items: stretch;
    gap: 20px;
    margin-top: auto;
    width: 100%;
}
.new-career-page .career-job-card-view-btn {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #000;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 12px;
    cursor: pointer;
    transition: background 0.2s ease;
    flex: 1;
    min-width: 0;
    text-align: center;
}
.new-career-page .career-job-card-view-btn:hover {
    background: #e5e7eb;
}
.new-career-page .career-job-card-apply-btn {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    background: #e57a35;
    border: none;
    border-radius: 8px;
    padding: 10px 12px;
    text-decoration: none;
    transition:
        background 0.2s ease,
        opacity 0.2s ease;
    flex: 1;
    min-width: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.new-career-page .career-job-card-apply-btn:hover {
    background: #d46b2a;
    color: #fff;
}
.new-career-page .career-openings-footer-note {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #374151;
    margin: 40px 0 0;
    max-width: 800px;
}
.new-career-page .career-openings-footer-note a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
}
.new-career-page .career-openings-footer-note a:hover {
    text-decoration: underline;
}

/* Career page: Apply Online form (matches website typography/theme) */
.new-career-page #applyWrapper {
    background: #fff;
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 50px 50px 80px;
}
.new-career-page #applyWrapper .heading .h2 {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: 0;
    color: #111111 !important;
    margin-bottom: 28px !important;
}
.new-career-page #applyWrapper .form-container {
    background: #f8f8f8;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 28px;
}
.new-career-page #applyWrapper .career-form .form-floating > label {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #777;
}
.new-career-page #applyWrapper .career-form .form-control {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
    color: #1f2937;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    box-shadow: none;
}
.new-career-page #applyWrapper .career-form .form-control::placeholder {
    color: #9ca3af;
}
.new-career-page #applyWrapper .career-form textarea.form-control {
    min-height: 100%;
    resize: vertical;
}
.new-career-page #applyWrapper .career-form .form-control:focus {
    border-color: #f6883e;
    box-shadow: 0 0 0 0.12rem rgba(246, 136, 62, 0.16);
}
.new-career-page #applyWrapper .career-form .readmore {
    margin-top: 24px;
}
.new-career-page #applyWrapper .career-form #contsubmti.button {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    letter-spacing: 0;
    background: #f6883e;
    border: 1px solid #f6883e;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    min-width: 170px;
}
.new-career-page #applyWrapper .career-form #contsubmti.button:hover {
    background: #e57a35;
    border-color: #e57a35;
}
.new-career-page #applyWrapper .carstatus {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 12px;
}
@media (max-width: 1024px) {
    .new-career-page .career-jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .new-career-page .career-jobs-grid {
        grid-template-columns: 1fr;
        margin-top: 28px;
        gap: 16px;
    }
    .new-career-page .career-job-card {
        padding: 20px;
    }
}
@media (max-width: 993px) {
    .new-career-page .contact-details-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .new-career-page .contact-details-header-right {
        width: 100%;
        flex-wrap: wrap;
    }
    .new-career-page .contact-details-header-search {
        flex: 1;
        min-width: 0;
    }
}
@media (max-width: 769px) {
    .new-career-page .career-openings-inner {
        padding: 50px 30px;
    }
    .new-career-page #applyWrapper {
        padding: 50px 30px;
    }
    .new-career-page #applyWrapper .heading .h2 {
        font-size: 28px;
        text-align: center;
    }
    .new-career-page #applyWrapper .form-container {
        padding: 22px;
    }
    .new-career-page .contact-details-header-title {
        text-align: center;
        width: 100%;
    }
    .new-career-page .contact-details-header-subtitle {
        text-align: center;
    }
    .new-career-page .contact-details-header {
        align-items: center;
    }
    .new-career-page .contact-details-header-left {
        width: 100%;
    }
}
@media (max-width: 518px) {
    .new-career-page .career-openings-inner {
        padding: 30px 10px !important;
    }
    .new-career-page #applyWrapper {
        padding: 30px 10px 40px;
    }
    .new-career-page #applyWrapper .heading .h2 {
        font-size: 24px;
        margin-bottom: 20px !important;
    }
    .new-career-page #applyWrapper .form-container {
        padding: 16px;
        border-radius: 10px;
    }
    .new-career-page #applyWrapper .career-form .readmore {
        margin-top: 18px;
    }
    .new-career-page #applyWrapper .career-form #contsubmti.button {
        width: 100%;
        min-width: 0;
    }
    .new-career-page .contact-details-header-right {
        width: 100%;
        flex-direction: column;
    }
    .new-career-page .contact-details-header-search-wrap,
    .new-career-page .contact-details-header-dropdown-wrap {
        width: 100%;
    }
    .new-career-page .contact-details-header-search,
    .new-career-page .contact-details-header-dropdown {
        width: 100%;
        min-width: 0;
    }
}

.new-contact-page .contact-page-map-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.new-contact-page .contact-page-map-wrap {
    width: 100%;
    height: 0;
    padding-bottom: 45%;
    position: relative;
    overflow: hidden;
}

.new-contact-page .contact-page-map-iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Event page section */
.new-event-page .event-page-section {
    background: #fff;
    max-width: 1500px;
    margin: 0 auto;
    padding: 56px 50px 0px;
    box-sizing: border-box;
}
.new-event-page .event-page-inner {
    width: 100%;
}
.new-event-page .event-page-title {
    font-family: "Lato", "Inter", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #111;
    margin: 0 0 32px;
}
.new-event-page .event-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.new-event-page .event-page-card {
    display: block;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition:
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        transform 0.25s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.new-event-page .event-page-card:hover {
    border-color: #e57a35;
    box-shadow: 0 8px 24px rgba(229, 122, 53, 0.15);
    transform: translateY(-4px);
}
.new-event-page .event-page-card-image-wrap {
    width: 100%;
    padding-bottom: 60%;
    position: relative;
    background: #f3f4f6;
    overflow: hidden;
}
.new-event-page .event-page-card:hover .event-page-card-image {
    transform: scale(1.05);
}
.new-event-page .event-page-card-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.new-event-page .event-page-card-content {
    padding: 18px 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 72px;
}
.new-event-page .event-page-card-text {
    flex: 1;
    min-width: 0;
}
.new-event-page .event-page-card-title {
    font-family: "Lato", "Inter", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    color: #f6883e;
    margin: 0 0 10px;
}
.new-event-page .event-page-card-date {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}
.new-event-page .event-page-card-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(229, 122, 53, 0.12);
    color: #e57a35;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}
.new-event-page .event-page-card-arrow svg {
    width: 20px;
    height: 20px;
}
.new-event-page .event-page-card:hover .event-page-card-arrow {
    background: #e57a35;
    color: #fff;
    transform: translateX(4px);
}
@media (max-width: 1024px) {
    .new-event-page .event-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    /* .new-event-page .event-page-section {
        padding: 40px 24px;
    } */
    .new-event-page .event-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.new-contact-page .contact-details-two-col {
    display: flex;
    gap: 74px;
    /* padding-right: 50px; */
    align-items: flex-start;
    /* justify-content: space-between; */
    /* background-color: red; */
}

.new-contact-page .contact-details-left {
    width: 36%;
    flex: 0 0 36%;
}

.new-contact-page .contact-details-left-container {
    background: #fcfcfc;
    padding: 70px 50px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-sizing: border-box;
}

.new-contact-page .contact-details-right-container {
    padding: 62px 71px 62px 0;
    box-sizing: border-box;
}
@media (max-width: 1025px) {
    .new-contact-page .contact-details-right-container {
        padding: 62px 56px 62px 0;
    }
}

@media (max-width: 993px) {
    .new-contact-page .contact-details-two-col {
        flex-direction: column;
        gap: 40px;
    }
    .new-contact-page .contact-details-left {
        width: 100%;
        flex: none;
    }
    .new-contact-page .contact-details-right {
        width: 100%;
        flex: none;
    }
    .new-contact-page .contact-details-right-container {
        width: 100%;
        padding: 0 30px 50px;
        box-sizing: border-box;
    }
    .new-contact-page .contact-details-right {
        width: 100% !important;
    }
    .new-contact-page .contact-details-right-title {
        font-size: 24px;
        text-align: center;
    }
    .new-media-page .section-10-contact-us-form {
        margin-top: 0px;
    }
}

.new-contact-page .contact-details-item {
    display: flex;
    gap: 35px;
    align-items: flex-start;
}

.new-contact-page .contact-details-icon-wrap {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: #fff;
    /* border: 1px solid #d0d0d0; */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 8px 24px 0px #959da533;
}

.new-contact-page .contact-details-icon {
    width: 24px;
    height: 18px;
    color: #000000;
}

.new-contact-page .contact-details-heading {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #000000;
    margin: 0 0 14px;
}

.new-contact-page .contact-details-desc {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0;
    color: #515151;
    margin: 0 0 4px;
    max-width: 270px;
}

.new-contact-page .contact-details-desc-label {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #515151;
}

.new-contact-page .contact-details-right {
    width: 60%;
    flex: 0 0 60%;
    box-sizing: border-box;
}

.new-contact-page .contact-details-right-title {
    font-family: "Lato", "Inter", sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #000;
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.new-contact-page .contact-details-right-title::after {
    content: "";
    flex: 1;
    height: 1px;
    min-width: 20px;
    background: #dedddd;
}
@media (max-width: 768px) {
    .new-contact-page .contact-details-right-title::after {
        display: none;
    }
    .new-event-page .event-page-section {
        padding: 50px 30px;
    }
}

.new-contact-page
    .contact-details-right-container
    .contact-details-message-input {
    padding: 50px 16px !important;
    box-sizing: border-box;
    overflow: hidden;
    resize: none;
    min-height: 120px;
    line-height: 20px;
}

.new-contact-page .contact-details-form-box {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.new-contact-page .contact-details-form-subtitle {
    font-family: "Lato", "Inter", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #000;
    margin: 0 0 24px;
}

.new-contact-page .contact-details-form .contact-details-form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.new-contact-page .contact-details-form .contact-details-form-row:last-of-type {
    margin-bottom: 20px;
}

.new-contact-page .contact-details-form input,
.new-contact-page .contact-details-form textarea {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    background: #e0e0e0;
    font-family: "Lato", "Inter", sans-serif;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
}

.new-contact-page .contact-details-form textarea {
    min-height: 80px;
    resize: vertical;
}

.new-contact-page .contact-details-form-submit {
    width: 100%;
    padding: 14px 24px;
    background: #f6883e;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: "Lato", "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.new-contact-page .contact-details-form-submit:hover {
    background: #e57a35;
}

/* Tablet: 2 columns, both sections span 2 (full width, stacked) */
@media (max-width: 1024px) {
    .new-contact-page .contact-details-two-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .new-contact-page .contact-details-left,
    .new-contact-page .contact-details-right {
        grid-column: span 2;
    }
}

/* Mobile: 1 column, both span 1 (stacked) */
@media (max-width: 640px) {
    .new-contact-page .contact-details-two-col {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .new-contact-page .contact-details-left,
    .new-contact-page .contact-details-right {
        grid-column: span 1;
    }
    /* .new-contact-page .contact-details-section {
        padding: 40px 24px 60px;
    } */
    .new-contact-page .contact-details-left-container {
        padding: 30px 10px;
    }
    .new-contact-page .contact-details-form .contact-details-form-row {
        flex-direction: column;
    }
    .new-contact-page .contact-details-desc {
        max-width: 100%;
    }
    .new-contact-page .contact-details-item {
        gap: 25px;
    }
    .new-contact-page .contact-details-heading {
        margin: 0 0 8px;
    }
    .new-contact-page .contact-details-left-container {
        gap: 15px;
    }
    .new-contact-page .contact-details-desc {
        font-size: 14px;
        line-height: auto;
    }
    .new-contact-page .contact-details-right-container {
        padding: 0px 10px 30px;
    }
}
@media (max-width: 993px) {
    .new-contact-page .contact-details-desc {
        max-width: 100%;
    }
}

/* Career page – .career-section */
.new-career-page .career-section {
    background: #fff;
    padding: 56px 50px;
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: border-box;
}
.new-career-page .career-section-inner {
    width: 100%;
    margin: 0 auto;
}
.new-career-page .career-section-title {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0;
    color: #111111;
    margin: 0 0 16px;
}
.new-career-page .career-section-desc {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0;
    color: #515151;
    margin: 0;
}
@media (max-width: 769px) {
    .new-career-page .career-section {
        padding: 50px 30px;
    }
}
@media (max-width: 518px) {
    .new-career-page .career-section {
        padding: 30px 10px;
    }
}
@media (max-width: 789px) {
    .new-career-page .career-section-title {
        font-size: 24px;
    }
    .new-career-page .career-section-desc {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .new-career-page .career-section-inner {
        text-align: center;
    }
}

/* Career page – 4 cards (growth, culture, rewards, innovative) */
.new-career-page .career-cards-section {
    background: #fff;
    padding: 0px 50px;
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: border-box;
}
.new-career-page .career-cards-inner {
    width: 100%;
    margin: 0 auto;
}
.new-career-page .career-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.new-career-page .career-card {
    background: #f6f6f6;
    border-radius: 12px;
    padding: 50px 24px;
    border: 1px solid #f1ecec;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.new-career-page .career-card-icon-wrap {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.new-career-page .career-card-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.new-career-page .career-card-title {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    color: #111111;
    margin: 0 0 12px;
    text-align: left;
}
.new-career-page .career-card-desc {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #515151;
    margin: 0;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
@media (max-width: 1024px) {
    .new-career-page .career-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 769px) {
    .new-career-page .career-cards-section {
        padding: 0px 30px;
    }
    .new-contact-page .contact-details-right-title {
        justify-content: center;
    }
    .new-contact-page .contact-details-left-container {
        padding: 50px 30px !important;
    }
    .new-event-page .event-page-title {
        font-size: 24px;
        text-align: center;
        margin: 0 0 10px;
    }
}
@media (max-width: 640px) {
    .new-career-page .career-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .new-career-page .career-card {
        padding: 24px 20px;
    }
}
@media (max-width: 518px) {
    .new-career-page .career-cards-section {
        padding: 0px 10px;
    }
    .new-contact-page .contact-details-left-container {
        padding: 30px 10px !important;
    }
    .new-event-page .event-page-section {
        padding: 30px 10px;
    }
}
/* 768px screen par banner properly show */
@media (min-width: 768px) and (max-width: 1197px) {
    .new-media-page .media-banner-section {
        min-height: 59vh;
        max-height: 520px;
    }
}
