/* Related Content Styles */
.related-content {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 25px 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.related-title {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.4em;
    font-weight: 600;
    text-align: center;
}

.related-items {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.related-item {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    background-color: var(--background);
    border-radius: 8px;
    padding: 15px;
    text-decoration: none;
    color: var(--secondary);
    display: flex;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.related-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    color: var(--primary);
}

.related-icon {
    background-color: var(--primary);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.related-text {
    font-weight: 500;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .related-content {
        padding: 20px 25px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .related-items {
        flex-direction: column;
    }
    
    .related-item {
        max-width: none;
    }
}
