﻿.static-header {
    background: url(../img/StaticPage_header.webp) center / cover no-repeat;
}

.navbar-custom {
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.75) 70%, rgba(0, 0, 0, 1) 100%), var(--primary-bg) !important;
}

.lifestyle-blog-search-section,
.article-list-section {
    position: relative;
    background: var(--primary-bg);
    color: #ffffff;
    padding: 50px 85px 0;
    overflow: hidden;
}

.search-box-mobile {
    border-radius: 6px;
}

.select-wrapper::after {
    right: 1px;
}

.form-row {
    margin-bottom: 0;
}

.searchbar-team-desktop {
    display: block;
}

.searchbar-team-mobile {
    display: none;
}

.section-title-line-left {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 20px;
}

    .section-title-line-left::before {
        content: "";
        display: inline-block;
        width: 80px;
        height: 2px;
        background: #ffffff;
        margin: 0 16px;
    }

    .section-title-line-left .section-title {
        line-height: 1;
    }


.mb-35 {
    margin-bottom: 35px;
}

.article-row-gap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.article-card-wrapper {
    flex: 0 0 350px;
    padding: 0;
}

.article-card-content {
    height: 110px;
    background: #ffffff;
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
}

.article-card-meta {
    color: #00447C;
    font-family: Arial, sans-serif;
    font-size: 14pt;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 10px;
}

.article-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 110px;
    height: 36px;
    padding: 0 18px;
    margin-top: auto;
    border: 1px solid var(--primary-bg);
    background: #ffffff;
    color: var(--primary-bg);
    text-decoration: none;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

    .article-card-btn:hover {
        background: var(--primary-bg);
        color: #ffffff;
        text-decoration: none;
    }


.work-with-us-section {
    position: relative;
    width: 100%;
    min-height: 480px;
    background: var(--primary-bg);
    color: #ffffff;
    overflow: hidden;
    padding: 80px 0 0;
}

    .work-with-us-section > img {
        display: block;
        width: 100%;
        height: 400px;
        margin-bottom: 80px;
        object-fit: cover;
    }

/* Content over image */
.work-with-us-content {
    position: absolute;
    top: 50%;
    left: 60px;
    right: 60px;
    transform: translateY(-50%);
    z-index: 10;
}

    .work-with-us-content .row {
        width: 100%;
        margin: 0;
    }

/* Title */
.work-with-us-title {
    margin: 0;
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 2px;
}

/* Description */
.work-with-us-description {
    max-width: 700px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

/* Button */
.work-with-us-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 40px;
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .work-with-us-btn:hover {
        background: #ffffff;
        color: #00447C;
        text-decoration: none;
    }

/* Divider */
.logos-divider {
    position: absolute;
    bottom: 0;
    left: 60px;
    right: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    z-index: 5;
}

/* =========================================================
   MOBILE 
   ========================================================= */

@media (max-width: 992px) {

    .search-form-mobile {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        gap: 10px;
    }

        .search-form-mobile .input-searchbar-mobile {
            width: auto;
            flex: 1;
            min-width: 0;
        }

        .search-form-mobile .search-row-mobile {
            width: auto;
            flex: 0 0 auto;
        }
}

@media (max-width: 991px) {

    .lifestyle-blog-search-section,
    .article-list-section {
        padding-left: 40px;
        padding-right: 40px;
    }

    .work-with-us-section {
        min-height: 450px;
    }

        .work-with-us-section > img {
            height: 450px;
            margin-bottom: 0;
        }

    .work-with-us-content {
        left: 40px;
        right: 40px;
    }

    .work-with-us-title {
        font-size: 34px;
    }

    .work-with-us-description {
        font-size: 17px;
        line-height: 1.5;
    }

    .work-with-us-btn {
        font-size: 16px;
        padding: 12px 30px;
    }
}

/* =========================
   MOBILE
   ==========================*/

@media (max-width: 768px) {

    .lifestyle-blog-search-section,
    .article-list-section {
        padding: 25px 25px 0;
    }

    /* Section title */
    .section-title-line-left::before {
        width: 40px;
        margin: 0 10px 0 0;
    }

    .section-title-line-left  {
        line-height: 1.4;
    }

   

    /* Search */
    .searchbar-team-desktop {
        display: none;
    }

    .searchbar-team-mobile {
        display: block;
    }

    /* Articles */
    .article-card-content {
        height: auto !important;
    }

    .article-card-wrapper {
        flex: 0 0 100%;
        max-width: 350px;
    }

    .article-row-gap {
        gap: 30px;
    }

    /* Work With Us */
    .work-with-us-section {
        min-height: 500px;
        padding: 35px 0;
    }

        .work-with-us-section > img {
            width: 100%;
            height: 500px;
            margin: 0;
            object-fit: cover;
        }

    .work-with-us-content {
        top: 50%;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        padding: 0 25px;
        transform: translateY(-50%);
    }

        .work-with-us-content .row {
            display: block;
        }

        .work-with-us-content .col-md-5,
        .work-with-us-content .col-md-7 {
            width: 100%;
            max-width: 100%;
            padding-left: 0;
            padding-right: 0;
        }

    .work-with-us-title {
        margin-bottom: 25px;
        font-size: 30px;
        line-height: 1.15;
    }

    .work-with-us-description {
        max-width: 100%;
        margin-bottom: 25px;
        font-size: 15px;
        line-height: 1.5;
    }

    .work-with-us-btn {
        min-width: 140px;
        min-height: 45px;
        padding: 10px 20px;
        font-size: 13px;
    }

    .logos-divider {
        left: 25px;
        right: 25px;
    }

    /* Existing mobile button */
    .connect-btn-team {
        width: 300px;
        height: 70px;
        font-size: 1.3rem;
    }
}

