#insights-top-image {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    background-color: #000000;
    padding: 0px;
}

#insights-top-image .image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

#insights-top-image .image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

#insights-top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

#insights-top-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

#insights-top-image .image-content {
    text-align: center;
    color: #ffffff;
    width: 70%;
    padding: 0 20px;
}

#insights-top-image .image-content h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.7);
    text-align: left;
    width: 80%;
}

#insights-top-image .image-content p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
    text-align: left;
    width: 50%;
    font-weight: 600;
}

#insights-top-image .image-meta {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

#insights-top-image .category {
    background-color: #d00909;
    color: #ffffff;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#insights-top-image .read-time {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.8;
    font-weight: 500;
}

#insights-top-image .read-time::before {
    content: "•";
    margin-right: 8px;
    color: #d00909;
}

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
    #insights-top-image {
        height: 70vh;
        min-height: 450px;
    }

    #insights-top-image .image-content {
        width: 75%;
        padding: 0 30px;
    }

    #insights-top-image .image-content h1 {
        font-size: 3em;
        width: 85%;
    }

    #insights-top-image .image-content p {
        font-size: 1.15em;
        width: 60%;
    }

    #insights-top-image .image-meta {
        gap: 15px;
    }

    #insights-top-image .category {
        padding: 10px 18px;
        font-size: 13px;
    }

    #insights-top-image .read-time {
        font-size: 13px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    #insights-top-image {
        height: 50vh;
        min-height: 400px;
    }

    #insights-top-image .image-content {
        width: 90%;
        padding: 0 20px;
    }

    #insights-top-image .image-content h1 {
        font-size: 2.5em;
        width: 100%;
        margin-bottom: 15px;
    }

    #insights-top-image .image-content p {
        font-size: 1.1em;
        width: 100%;
        margin-bottom: 20px;
    }

    #insights-top-image .image-meta {
        flex-direction: column;
        gap: 10px;
        align-items: start;
        justify-content: center;
    }

    #insights-top-image .category {
        padding: 8px 16px;
        font-size: 12px;
    }

    #insights-top-image .read-time {
        font-size: 13px;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    #insights-top-image {
        height: 45vh;
        min-height: 350px;
    }

    #insights-top-image .image-content {
        width: 95%;
        padding: 0 15px;
    }

    #insights-top-image .image-content h1 {
        font-size: 1.5em;
        line-height: 1.1;
        margin-bottom: 12px;
    }

    #insights-top-image .image-overlay {
        align-items: end;
        padding-bottom: 5vh;
    }

    #insights-top-image .image-content {
        width: 95%;
        padding: 0 15px;
    }

    #insights-top-image .image-content p {
        font-size: 1em;
        line-height: 1.4;
        margin-bottom: 18px;
    }

    #insights-top-image .image-meta {
        gap: 8px;
        margin-top: 15px;
    }

    #insights-top-image .category {
        padding: 6px 12px;
        font-size: 11px;
    }

    #insights-top-image .read-time {
        font-size: 12px;
    }
}

/* Landscape mobile devices - reduce text size when in landscape orientation */
@media screen and (orientation: landscape) and (max-height: 500px) {
    #insights-top-image .image-content h1 {
        font-size: 2em;
    }

    #insights-top-image {
        height: 90vh;
        min-height: 0px;
    }

    #insights-top-image .image-overlay {
        align-items: end;
        padding-bottom: 10vh;
    }
}
