/* Related Resources Section Styling */

.related-resources {
    padding-top: 80px;
    padding-bottom: 80px;
}

.resource-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
    transform: translateY(-5px);
}

.resource-card i {
    font-size: 48px;
    color: #0066cc;
    margin-bottom: 20px;
    display: inline-block;
}

.resource-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #292323;
    margin-bottom: 15px;
}

.resource-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.resource-card .read-more {
    display: inline-block;
    color: #0066cc;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.resource-card .read-more:hover {
    color: #0052a3;
}

.resource-card .read-more i {
    font-size: 16px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.resource-card:hover .read-more i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .related-resources {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .resource-card {
        padding: 20px;
    }

    .resource-card i {
        font-size: 36px;
    }

    .resource-card h3 {
        font-size: 16px;
    }
}
