/* Resource Links Section Styles */
.resource-links-section {
    margin: var(--spacing-xl) 0;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: var(--border-radius-secondary);
    
    & .resource-columns {
        display: flex;
        flex-wrap: nowrap;
     
        
        @media (max-width: 768px) {
            flex-direction: column;
        }
    }
    
    & .resource-column {
        min-width: 300px;
        
        &:first-child {
            flex: 0 0 55%;
            padding-right:2rem;
        }
        
        &:last-child {
            flex: 0 0 45%;
        }
        
        @media (max-width: 768px) {
            flex: 0 0 100% !important;
            width: 100%;
            margin-bottom: var(--spacing-md);
        }
        
        & h2 {
            margin-bottom: var(--spacing-md);
            font-family: var(--font-heading-primary);
            color: #fff;
        }
    }
}

.resource-links {
    & p {
        margin-bottom: var(--spacing-sm);
    }
    
    & a {
        display: inline-block;
        font-family: var(--font-heading-primary);
        color: #fff;
        position: relative;
        padding-right: 25px;
        transition: color 0.3s ease;
        font-weight: normal;
        
        &:hover {
            text-decoration: none;
        }
    }
}
