/**
 * TopVision Heading Widget Styles
 */

.topvision-heading-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

/* Top Text (English) */
.topvision-top-text {
    font-size: 14px;
    font-weight: 400;
    color: #7eb8d8;
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
    display: block;
}

/* Bottom Text (Main Heading) */
.topvision-bottom-text {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    padding: 0;
    display: block;
}

/* Highlight Text */
.topvision-highlight {
    color: #00a8ff;
    font-weight: 700;
}

/* Text Before & After */
.topvision-text-before,
.topvision-text-after {
    display: inline;
}

/* Responsive */
@media (max-width: 768px) {
    .topvision-top-text {
        font-size: 12px;
    }
    
    .topvision-bottom-text {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .topvision-top-text {
        font-size: 11px;
    }
    
    .topvision-bottom-text {
        font-size: 18px;
    }
}