/* Tech Expo - Content Info Styles */
.htc-expo-info {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.htc-expo-info__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.htc-expo-info__header {
    text-align: center;
    margin-bottom: 3rem;
}

.htc-expo-info__title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
}

.htc-expo-info__meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.htc-expo-info__date,
.htc-expo-info__location {
    font-size: 1.25rem;
    font-weight: 600;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.htc-expo-info__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.htc-expo-info__description {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.htc-expo-info__intro {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #2d3748;
    margin: 0 0 2rem 0;
    font-weight: 400;
}

.htc-expo-info__highlights {
    margin-bottom: 2rem;
}

.htc-expo-info__highlights-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 1.5rem 0;
}

.htc-expo-info__highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.htc-expo-info__highlights-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

.htc-expo-info__highlights-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.htc-expo-info__mission {
    padding: 1.5rem;
    background: rgba(102, 126, 234, 0.05);
    border-left: 4px solid #667eea;
    border-radius: 0 8px 8px 0;
}

.htc-expo-info__mission p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #2d3748;
    margin: 0;
    font-style: italic;
}

.htc-expo-info__cta-section {
    position: sticky;
    top: 2rem;
}

.htc-expo-info__cta-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid #667eea;
}

.htc-expo-info__cta-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.htc-expo-info__cta-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0 0 1.5rem 0;
}

.htc-expo-info__cta-subtitle strong {
    color: #667eea;
}

.htc-expo-info__benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.htc-expo-info__benefits-item {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #4a5568;
}

.htc-expo-info__benefits-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #48bb78;
    font-weight: bold;
}

.htc-expo-info__apply-btn {
    width: 100%;
    font-size: 1.125rem;
    padding: 1rem 1.5rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.htc-button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    line-height: 1;
}

.htc-button__icon {
    flex-shrink: 0;
}

.htc-button--primary {
    background: #667eea;
    color: #ffffff;
    border: 2px solid #667eea;
}

.htc-button--primary:hover,
.htc-button--primary:focus {
    background: #5a67d8;
    color: #ffffff;
    border-color: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Mobile responsiveness */
@media (max-width: 1023.98px) {
    .htc-expo-info__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .htc-expo-info__cta-section {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .htc-expo-info {
        padding: 2rem 0;
    }
    
    .htc-expo-info__title {
        font-size: 2.25rem;
    }
    
    .htc-expo-info__meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .htc-expo-info__date,
    .htc-expo-info__location {
        font-size: 1rem;
    }
    
    .htc-expo-info__description {
        padding: 1.5rem;
    }
    
    .htc-expo-info__intro {
        font-size: 1.125rem;
    }
    
    .htc-expo-info__cta-card {
        padding: 1.5rem;
    }
}

/* Note: merged <=575.98px refinements into Mobile bucket to keep 3 viewports */
