#insights-grid {
    background-color: #1f1f1f;
    padding-top: 60px;
    padding-bottom: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    background-image: url("../assets/images/crosshairs/grey-crosshairs-full-faded.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#insights-grid p {
    margin-bottom: 2em;
    color: #fff;
}

#insights-grid h4 {
    color: #white;
    margin-bottom: 4rem;
}

#insights-grid .grid-item {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

#insights-grid .grid-item:hover {
    transform: translateY(-5px);
}

/* Tablet styles */
@media (max-width: 768px) {
    #insights
}

/* Mobile styles */
@media (max-width: 480px) {
    #insights-grid {
        padding-bottom: 0px;
    }
}

/* Landscape mobile devices - optimize for limited vertical space */
@media screen and (orientation: landscape) and (max-height: 900px) {

    #insights-grid {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    #insights-grid h4 {
        font-size: 1.3rem;
    }
}
