﻿/* Hero Section RTL/LTR Support */
.hero-text {
    text-align: inherit;
}

[dir="rtl"] .hero-text {
    text-align: right;
}

[dir="ltr"] .hero-text {
    text-align: left;
}

.hero-slogan {
    text-align: inherit;
}

[dir="rtl"] .hero-slogan {
    text-align: right;
}

[dir="ltr"] .hero-slogan {
    text-align: left;
}

/* Hero Container Direction */
.hero-container {
    flex-direction: row;
}

[dir="rtl"] .hero-container {
    flex-direction: row-reverse;
}

[dir="ltr"] .hero-container {
    flex-direction: row;
}

