@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Lexend', sans-serif;
    width: 100%;
    overflow-x: hidden;
}

.content-wrapper {
    margin-top: 10vh;
    width: 100%;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.25vw 4.75vw;
    background-color: #fff;
    font-family: 'Lexend', sans-serif;
    height: 10vh;
    box-shadow: 0 0.68vw 4.83vw 0 #a2a2a2;
    gap: 0.625vw;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
    margin: 0;
    position: relative;
}

.logo img {
    height: 7vh;
}

.nav-links {
    display: flex;
    gap: 3.25vw;
}

.nav-links a {
    text-decoration: none;
    color: #808080;
    font-size: 1.25vw;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #000;
}

.nav-links a.active {
    color: #000;
}

.contact-us {
    display: flex;
    align-items: center;
    gap: 0.5vw;
    text-decoration: none;
    color: #000;
    font-size: 1.25vw;
}

.contact-us .icon {
    width: 1.56vw;
    height: 2.5vh;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.nav-links .contact-us {
    display: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    text-decoration: none;
    color: #808080;
    font-size: 1.25vw;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3vw;
}

.dropdown-toggle:hover {
    color: #000;
}

.dropdown-toggle.active {
    color: #000;
}

.dropdown-arrow {
    width: 1vw;
    height: 1vw;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow,
.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(70% + 0.5vh);
    left: 0;
    background-color: #fff;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1vh 0;
    z-index: 1001;
}

.dropdown-menu a {
    display: block;
    padding: 1.2vh 1.5vw;
    text-decoration: none;
    color: #808080;
    font-size: 1.15vw;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #000;
    padding-left: 2vw;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    display: block;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    gap: 3vw;
    padding-bottom: 8vh;
    background-color: transparent;
    width: 85vw;
    margin: 0 auto 5vh auto;
    border-radius: 1.5vw;
}

.hero-image-container {
    flex: 1;
    background-color: transparent;
    padding: 1vw;
    border-radius: 1.5vw;
    box-shadow: 0 0.5vh 1vw rgba(0, 0, 0, 0.08);
    height: 25vw;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1vw;
    display: block;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 1vw;
}

.hero-badge {
    background-color: #017AFF;
    color: #fff;
    padding: 0.5vh 1vw;
    border-radius: 0.5vw;
    font-size: 0.9vw;
    font-weight: 500;
}

.hero-read-time {
    font-size: 0.9vw;
    color: #666;
}

.hero-title {
    font-size: 2.5vw;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
}

.hero-summary {
    font-size: 1vw;
    color: #555;
    line-height: 1.6;
}

.hero-read-more {
    color: #017AFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1vw;
    display: flex;
    align-items: center;
    gap: 0.5vw;
}

.hero-read-more:hover {
    text-decoration: underline;
}

/* Responsive styles for hero section */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        width: 90vw;
        padding: 6vh 5vw;
        gap: 4vh;
    }

    .hero-image-container {
        height: 50vw;
    }

    .hero-title {
        font-size: 6vw;
    }

    .hero-summary {
        font-size: 3.5vw;
    }

    .hero-badge, .hero-read-time, .hero-read-more {
        font-size: 3vw;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 1vw;
    }

    .nav-links a {
        font-size: 1.5vw;
    }

    .contact-us {
        font-size: 1.5vw;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 4vw 6vw !important;
        height: 12vh !important;
        justify-content: center !important;
        position: relative !important;
        overflow: visible !important;
    }

    .logo {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .logo img {
        height: 6vh !important;
    }

    .nav-links {
        position: fixed !important;
        top: 12vh !important;
        left: -100% !important;
        width: 100vw !important;
        height: calc(100vh - 12vh) !important;
        background-color: #fff !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding-top: 5vh !important;
        gap: 4vh !important;
        transition: left 0.3s ease !important;
        z-index: 999 !important;
        overflow-y: auto !important;
    }

    .nav-links.active {
        left: 0 !important;
    }

    .nav-links a {
        font-size: 5vw !important;
        padding: 2vh 0 !important;
        width: 80% !important;
        text-align: center !important;
        color: #808080 !important;
        transition: color 0.3s ease !important;
    }

    .nav-links a:hover {
        color: #000 !important;
    }

    .nav-links a.active {
        color: #000 !important;
    }

    .nav-links .contact-us {
        display: flex !important;
        font-size: 5vw !important;
        gap: 3vw !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .nav-links .contact-us .icon {
        width: 6vw !important;
        height: 3vh !important;
    }

    .dropdown {
        width: 80% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .dropdown-toggle {
        width: 100% !important;
        text-align: center !important;
        font-size: 5vw !important;
        padding: 2vh 0 !important;
        color: #808080 !important;
        justify-content: center !important;
    }

    .dropdown-arrow {
        width: 4vw !important;
        height: 4vw !important;
    }

    .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        background-color: transparent !important;
        padding: 0 !important;
        margin-top: 0 !important;
        width: 100% !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease !important;
    }

    .dropdown-menu a {
        font-size: 4.5vw !important;
        padding: 1.5vh 0 !important;
        width: 100% !important;
        text-align: center !important;
    }

    .dropdown-menu a:hover {
        padding-left: 0 !important;
        background-color: transparent !important;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px !important;
    }

    .dropdown:hover .dropdown-menu {
        max-height: 0 !important;
    }

    .dropdown.active:hover .dropdown-menu {
        max-height: 500px !important;
    }

    .dropdown:hover .dropdown-arrow {
        transform: rotate(0deg) !important;
    }

    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg) !important;
    }

    .dropdown:not(.active) .dropdown-arrow {
        transform: rotate(0deg) !important;
    }

    .hamburger {
        display: flex !important;
        position: absolute !important;
        right: 6vw !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 1001 !important;
    }

    .header>.contact-us {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 3vw 5vw !important;
        height: 10vh !important;
        box-shadow: none;
    }

    .logo img {
        height: 5vh !important;
    }

    .nav-links {
        top: 10vh !important;
        height: calc(100vh - 10vh) !important;
    }

    .hamburger {
        width: 30px !important;
    }

    .hamburger span {
        width: 30px !important;
        height: 3px !important;
    }
}

.blogs-section {
    background-color: transparent;
    padding: 8vh 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Lexend', sans-serif;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.section-heading {
    text-align: center;
    margin-bottom: 5vh;
}

.section-heading h1 {
    font-size: 3.5vw;
    font-weight: 400;
    color: #000;
    margin: 0;
}

.latest-gossip-section .section-heading {
    text-align: left;
    width: 85vw;
    margin: 0 auto 4vh auto;
}

.latest-gossip-section .section-heading h1 {
    font-size: 2.4vw;
    font-weight: 500;
    color: #020617;
}

.latest-gossip-section .section-description {
    margin-top: 1vh;
    font-size: 1vw;
    color: #64748B;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3vw;
    width: 85vw;
    margin: 0 auto;
}

.editors-choice-section {
    overflow: hidden;
    width: 92vw;
    margin: 0 auto;
    background-color: transparent;
    padding: 0;
}


.editors-choice-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.editors-choice-carousel-wrapper {
    overflow: hidden;
    padding: 2vh 0;
}

.editors-choice-carousel {
    display: flex;
    gap: 3vw;
    transition: transform 0.5s ease;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: 0.1vw solid #ddd;
    cursor: pointer;
    padding: 1vw;
    z-index: 10;
    border-radius: 50%;
    width: 3vw;
    height: 3vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow.left {
    left: 1vw;
}

.carousel-arrow.right {
    right: 1vw;
}

.carousel-arrow svg {
    width: 1.5vw;
    height: 1.5vw;
}

.blog-card-unified {
    flex: 0 0 calc((100% - 6vw) / 3);
    background: #ffffff;
    border-radius: 1.5vw;
    padding: 1.5vw;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    /* border: 2px solid #017AFF;
    box-shadow: 0 0.5vh 1vw rgba(0, 0, 0, 0.08); */
    position: relative;
    overflow: hidden;
    min-height: 28vw;
    height: auto;
}

.blog-card-unified:hover {
    transform: translateY(-0.5vh);
    box-shadow: 0 1.5vh 3vw rgba(1, 122, 255, 0.2);
}

.blog-card-image-container {
    width: 100%;
    height: 12vw;
    overflow: hidden;
    border-radius: 0.8vw;
    margin-bottom: 1.5vh;
    position: relative;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card-unified:hover .blog-card-image {
    transform: scale(1.05);
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.8vh;
    flex: 1;
    padding: 0.5vw;
}

.blog-card-date {
    font-size: 0.9vw;
    color: #666;
    font-weight: 400;
}

.blog-card-title {
    font-size: 1.3vw;
    font-weight: 600;
    color: #000;
    margin: 0;
    line-height: 1.3;
}

.blog-card-summary {
    font-size: 0.95vw;
    color: #555;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-read-more {
    font-size: 0.95vw;
    color: #017AFF;
    text-decoration: none;
    font-weight: 500;
    margin-top: auto;
    padding-top: 1vh;
    transition: color 0.3s ease;
}

.blog-card-read-more:hover {
    color: #0056b3;
}

.editors-choice-card {
    flex: 0 0 calc((100% - 6vw) / 3);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 1.5vw;
    padding: 2vw;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid #e0e0e0;
    box-shadow: 0 0.5vh 1vw rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    min-height: 25vw;
    height: auto;
}

.editors-choice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 122, 255, 0.05) 0%, rgba(1, 122, 255, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.editors-choice-card:hover::before {
    opacity: 1;
}

.editors-choice-card:hover {
    border-color: #017AFF;
    box-shadow: 0 1.5vh 3vw rgba(1, 122, 255, 0.2);
}

.editors-choice-card-image-container {
    width: 100%;
    height: 12vw;
    overflow: hidden;
    border-radius: 1vw;
    margin-bottom: 1.5vh;
    position: relative;
    z-index: 1;
}

.editors-choice-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.editors-choice-card:hover .editors-choice-card-image {
    transform: scale(1.05);
}

.editors-choice-card-content {
    display: flex;
    flex-direction: column;
    gap: 1vh;
    flex: 1;
    position: relative;
    z-index: 1;
}

.editors-choice-card .blog-title {
    font-size: 1.2vw;
    font-weight: 600;
}

.editors-choice-card .blog-summary {
    font-size: 1vw;
    color: #555;
    flex-grow: 1;
}

.editors-choice-card .blog-footer {
    margin-top: auto;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.blog-card {
    background-color: #fff;
    border: 0.15vw solid #017AFF;
    border-radius: 1.5vw;
    padding: 2vw;
    display: flex;
    flex-direction: column;
    gap: 1.5vh;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    min-height: 25vw;
    height: auto;
}

.blog-card:hover {
    transform: translateY(-1vh);
    box-shadow: 0 1vh 2vw rgba(0, 123, 255, 0.15);
}

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.blog-dot {
    width: 1.5vw;
    height: 1.5vw;
    border-radius: 50%;
    flex-shrink: 0;
}

.blog-read-time {
    font-size: 0.9vw;
    color: #666;
    white-space: nowrap;
}

.blog-title {
    font-size: 1.4vw;
    font-weight: 600;
    color: #000;
    margin: 0;
    line-height: 1.3;
}

.blog-date {
    font-size: 0.85vw;
    color: #999;
    margin: 0;
}

.blog-footer {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5vw;
    width: 100%;
}

.blog-description {
    font-size: 1vw;
    color: #333;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    margin-right: 1.5vw;
}

.blog-arrow-link {
    display: block;
    text-decoration: none;
    position: absolute;
    right: 1vw;
    bottom: 2vh;
}

.blog-arrow {
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    border: 0.15vw solid #000;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-arrow {
    border-color: #017AFF;
    background-color: #017AFF;
    transform: scale(1.1);
}

.blog-arrow svg {
    width: 1.4vw;
    height: 1.3vw;
    stroke: #000;
    stroke-width: 0.2vw;
    fill: none;
    transition: stroke 0.3s ease;
}

.blog-card:hover .blog-arrow svg {
    stroke: #fff;
}

.blogs-grid .blog-card-unified {
    flex: none;
    width: 100%;
}

.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 4vh;
    gap: 1vw;
}

.pagination-buttons {
    display: flex;
    align-items: center;
    gap: 1vw;
}

.page-btn {
    background-color: #e8e8e8;
    color: #333;
    border: none;
    border-radius: 0.5vw;
    padding: 1.2vh 0.8vw;
    min-width: 2.5vw;
    font-size: 1vw;
    font-family: 'Lexend', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-btn:hover:not(.active) {
    background-color: #d0d0d0;
}

.page-btn.active {
    background-color: #017AFF;
    color: #fff;
}

.page-dots {
    color: #666;
    font-size: 1.2vw;
    padding: 0 0.5vw;
}

.next-btn,
.prev-btn {
    background-color: #017AFF;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5vw;
    padding: 1.2vh 2vw;
}

.next-btn:hover,
.prev-btn:hover {
    background-color: #0056b3;
}

.next-btn svg,
.prev-btn svg {
    width: 1.2vw;
    height: 1.2vw;
}

@media (max-width: 768px) {
    .editors-choice-section {
        display: none;
    }

    .editors-choice-section-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 6vh 5vw;
    }

    .editors-choice-carousel-container-mobile {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .editors-choice-carousel-wrapper-mobile {
        overflow: hidden;
    }

    .editors-choice-carousel-mobile {
        display: flex;
        gap: 4vw;
        transition: transform 0.5s ease;
    }

    .carousel-arrow-mobile {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(255, 255, 255, 0.8);
        border: 0.1vw solid #ddd;
        cursor: pointer;
        padding: 2vw;
        z-index: 10;
        border-radius: 50%;
        width: 6vw;
        height: 6vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .carousel-arrow-mobile.left {
        left: 2vw;
    }

    .carousel-arrow-mobile.right {
        right: 2vw;
    }

    .carousel-arrow-mobile svg {
        width: 3vw;
        height: 3vw;
    }

    .editors-choice-section-mobile .blog-card,
    .editors-choice-section-mobile .blog-card-unified {
        flex: 0 0 80vw;
        height: auto;
    }

    .blog-card-unified {
        border-radius: 4vw;
        padding: 4vw;
        min-height: auto;
        border-width: 2px;
    }

    .blog-card-unified.mobile-card {
        flex: 0 0 80vw;
    }

    .blog-card-image-container {
        height: 40vw;
        border-radius: 3vw;
        margin-bottom: 2vh;
    }

    .blog-card-body {
        padding: 2vw;
        gap: 1.5vh;
    }

    .blog-card-date {
        font-size: 3.5vw;
    }

    .blog-card-title {
        font-size: 5vw;
    }

    .blog-card-summary {
        font-size: 3.5vw;
        -webkit-line-clamp: 3;
    }

    .blog-card-read-more {
        font-size: 3.5vw;
        padding-top: 1.5vh;
    }

    .blogs-section {
        padding: 6vh 5vw;
    }

    .section-heading {
        margin-bottom: 4vh;
    }

    .section-heading h1 {
        font-size: 8vw;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 4vw;
        width: 90vw;
    }

    .blog-card {
        border-radius: 4vw;
        padding: 5vw;
        gap: 2vh;
        border-width: 0.3vw;
    }

    .blog-dot {
        width: 4vw;
        height: 4vw;
    }

    .blog-read-time {
        font-size: 3vw;
    }

    .blog-title {
        font-size: 4.5vw;
    }

    .blog-date {
        font-size: 3vw;
    }

    .blog-footer {
        gap: 3vw;
    }

    .blog-description {
        font-size: 3.5vw;
    }

    .blog-arrow {
        width: 10vw;
        height: 10vw;
        border-width: 0.4vw;
        position: absolute;
        right: 1vw;
        bottom: -2vw;
    }

    .blog-arrow svg {
        width: 5vw;
        height: 5vw;
        stroke-width: 0.4vw;
    }

    .pagination-buttons {
        gap: 2vw;
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-btn {
        padding: 1vh 3vw;
        font-size: 3.5vw;
        border-radius: 2vw;
    }

    .page-dots {
        font-size: 4vw;
    }

    .next-btn {
        padding: 1.5vh 2vw;
        gap: 2vw;
        margin-left: 6vw;
    }

    .next-btn svg {
        width: 4vw;
        height: 4vw;
    }
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25vh 5vh 5vw 5vw;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(1, 122, 255, 0.25) 100%);
    font-family: 'Lexend', sans-serif;
    gap: 5vh;
    position: static;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    width: 100vw;
    align-items: flex-start;
    padding: 0 5vw;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5vh;
}

.footer-section h3 {
    font-size: 1.5vw;
    margin-bottom: 1vh;
    font-weight: normal;
}

.footer-section a,
.footer-section p {
    text-decoration: none;
    color: #000;
    font-size: 1.1vw;
}

.footer-section.cta {
    border-right: 3px solid #000;
    padding-right: 2vw;
}

.footer-section.cta h2 {
    font-size: 2vw;
    color: #017AFF;
    text-align: center;
    font-weight: normal;
}

.footer-section.cta .button {
    background-color: #017AFF;
    color: #fff;
    padding: 1.5vh 2vw;
    border-radius: 0.5vw;
    text-align: center;
    font-size: 1.2vw;
    transition: transform 0.3s ease;
}

.footer-section.cta .button:hover {
    transform: scale(1.05);
}

.social-links {
    display: flex;
    gap: 1vw;
}

.social-links img {
    width: 2vw;
    height: 2vw;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vh;
    padding-top: 3vh;
    width: 100%;
}

.footer-logo img {
    height: 15vh;
}

.copyright {
    font-size: 1vw;
}

@media (max-width: 768px) {
    .footer {
        padding: 15vh 8vw 8vw 8vw;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 6vh 6vw;
        padding: 0;
        width: 100%;
    }

    .footer-section.cta {
        grid-column: 1 / -1;
        border-right: none;
        padding-right: 0;
        text-align: center;
    }

    .footer-section {
        text-align: left;
        width: 100%;
    }

    .footer-section h3 {
        font-size: 5vw;
        margin-bottom: 2vh;
    }

    .footer-section a,
    .footer-section p {
        font-size: 4vw;
    }

    .footer-section.cta h2 {
        font-size: 8vw;
    }

    .footer-section.cta .button {
        font-size: 4vw;
        padding: 2vh 6vw;
        border-radius: 2vw;
        max-width: 60vw;
        margin: 0 auto;
    }

    .social-links {
        justify-content: flex-start;
        gap: 4vw;
    }

    .social-links img {
        width: 8vw;
        height: 8vw;
    }

    .footer-logo img {
        height: 10vh;
    }

    .copyright {
        font-size: 3.5vw;
        text-align: center;
    }
}

/* Editor's Choice Section */
.editors-choice-section {
    padding: 8vh 5vw;
    background-color: transparent;
}

.editors-choice-container {
    display: flex;
    gap: 4vw;
    align-items: flex-start;
    width: 82vw;
    margin: 0 auto;
}

.editors-choice-left {
    flex: 1;
    max-width: 30%;
}

.editors-choice-title {
    font-size: 2.5vw;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 2vh;
}

.editors-choice-subtitle {
    font-size: 1.1vw;
    color: #555;
    line-height: 1.6;
}

.editors-choice-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

.editor-pick-card {
    display: flex;
    gap: 1.5vw;
    cursor: pointer;
    padding: 1vw;
    border-radius: 1vw;
    transition: background-color 0.3s ease;
}

.editor-pick-card:hover {
    background-color: #f0f0f0;
}

.editor-pick-image-container {
    width: 10vw;
    height: 8vw;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 0.8vw;
}

.editor-pick-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editor-pick-content {
    display: flex;
    flex-direction: column;
    gap: 0.5vh;
}

.editor-pick-category {
    font-size: 0.8vw;
    color: #017AFF;
    font-weight: 500;
}

.editor-pick-title {
    font-size: 1.2vw;
    font-weight: 600;
    margin: 0;
}

.editor-pick-summary {
    font-size: 0.9vw;
    color: #555;
    margin: 0;
}

.editor-pick-read-more {
    font-size: 0.9vw;
    color: #017AFF;
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
}

/* Responsive visibility for Editor's Choice sections */

/* Hide mobile version by default */
.mobile-editors-choice-section {
    display: none;
}

@media (max-width: 768px) {
    /* Hide desktop version on mobile */
    .editors-choice-section {
        display: none;
    }

    /* Show mobile version on mobile */
    .mobile-editors-choice-section {
        display: flex;
    }
}