/* Block: despre-content-topics */
.htc-despre-content-topics {
    padding: 2rem 1rem;
    background-color: #ffffff;
}

.htc-despre-content-topics__content {
    max-width: 1000px;
    margin: 0 auto;
}

.htc-despre-content-topics__intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #34495e;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
}

.htc-despre-content-topics__topics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.htc-despre-content-topics__topic {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    font-size: 1rem;
    line-height: 1.5;
    color: #2c3e50;
    transition: all 0.3s ease;
    position: relative;
}

.htc-despre-content-topics__topic:hover {
    background-color: #e9ecef;
    border-left-color: #2980b9;
    transform: translateX(4px);
}

.htc-despre-content-topics__topic::before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

@media (min-width: 576px) and (max-width: 1023.98px) {
    .htc-despre-content-topics {
        padding: 3rem 1rem;
    }
    
    .htc-despre-content-topics__intro {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .htc-despre-content-topics__topics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .htc-despre-content-topics__topic {
        padding: 1.25rem;
        font-size: 1.05rem;
    }
}

@media (min-width: 1024px) {
    .htc-despre-content-topics {
        padding: 4rem 1rem;
    }
    
    .htc-despre-content-topics__intro {
        font-size: 1.3rem;
        margin-bottom: 3rem;
    }
    
    .htc-despre-content-topics__topics-grid {
        gap: 1.25rem;
    }
    
    .htc-despre-content-topics__topic {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
}
