.see-all-resources-main {
    min-height: 90vh;
}

.section-title-container {
    padding: 2vh 2vw 0 2vw;
}

.see-all-resources {
    display: flex;
    flex-wrap: wrap; /* Add flex-wrap to ensure proper wrapping */
}

.see-all-resources .resource-card {
    width: 33%; /* Change from 33% to 50% for 2 resources per row */
    padding: 2vw; /* Slightly reduced padding for better spacing */
    box-sizing: border-box;
}

.see-all-resources .resource-card-inner {
    background-color: white;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.see-all-resources .resource-card-inner:hover {
    transform: translateY(-5px);
}

.see-all-resources .resource-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary);
}

.see-all-resources .resource-image {
    flex: 1;
}

.see-all-resources .resource-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 0;
}

.see-all-resources .resource-info {
    flex: 1;
    padding: 1.5rem; /* Slightly reduced padding */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
