/* Resources Section Styles */
.resources-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.resources-section {
    padding: 42px 0;
    background-color: #F2F2F2;
}

.resources-section .section-title {
    font-size: 40px;
    text-align: center;
    color: #1E355E;
    margin-bottom: 24px;
    font-weight: 400;
}

.resources-section .section-desc {
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Default (Mobile) styles first */
.resources-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 32px;
}

.resource-block {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-direction: column;
}

.resources-section .section-title {
    font-size: 32px;
    text-align: center;
    color: #1E355E;
    margin-bottom: 24px;
    font-weight: 400;
}

.resource-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resource-title-wrapper {
    position: relative;
}

.resource-title {
    font-size: 28px;
    color: #2d3a5b;
    position: relative;
    margin: 0;
    padding-left: 55px;
    font-weight: 400;
    width: max-content;
}

/* Vertical line of the cross */
.resource-title-wrapper::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #1E355E;
}

/* Horizontal line of the cross */
.resource-title-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 45px;
    height: 1px;
    background-color: #1E355E;
}

.resource-links li {
    position: relative;
    padding-left: 20px;
    padding-bottom: 10px;
}

.resource-links li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4b6bab;
}

.resource-links a {
    color: #314B70;
    text-decoration: none;
    font-size: 18px;
    white-space: nowrap;
    font-weight: 600;
}

.resource-links a:hover {
    color: #314B70;
}

/* Desktop styles */
@media (min-width: 768px) {
    .resource-block {
        flex-direction: row;
        gap: 100px;
        padding: 0 100px;
    }

    .resources-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }

    .resources-section .section-title {
        font-size: 40px;
    }

    .resource-title {
        font-size: 28px;
    }
}

@media (min-width: 1025px) {
    .resource-links {
        column-count: 2;
    }
}