/* ========================================== */
/* DASHBOARD CSS - SMP IT HAYATAN THAYYIBAH   */
/* MODERN NETFLIX STYLE - BOOTSTRAP 5         */
/* FULLY RESPONSIVE & RAPIH                   */
/* ========================================== */

/* ------------------------------------------ */
/* ROOT VARIABLES                             */
/* ------------------------------------------ */
:root {
    --primary: #0a5c4a;
    --primary-dark: #073e29;
    --primary-light: #e8f3f0;
    --secondary: #ff6b35;
    --secondary-light: #ff8a5c;
    --dark: #1a1a2e;
    --dark-light: #2d2d44;
    --gray: #6c757d;
    --gray-light: #f8f9fa;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #0a5c4a 0%, #1a8a6e 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #ff8a5c 100%);
}

.text-hijau {
    color: var(--primary-dark);
}

/* ------------------------------------------ */
/* SECTION BADGES & TITLES                    */
/* ------------------------------------------ */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title .text-primary {
    color: var(--primary);
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray);
    text-align: center;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* ------------------------------------------ */
/* HERO CAROUSEL - WITH MODERN INDICATORS     */
/* ------------------------------------------ */
.hero-section {
    position: relative;
    min-height: 90vh;
    margin-top: 0;
}

.hero-section .carousel-item {
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.hero-content {
    position: absolute;
    bottom: 25%;
    left: 0;
    right: 0;
    z-index: 2;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 16px;
    opacity: 0.95;
}

.hero-description {
    font-size: 14px;
    max-width: 500px;
    margin-bottom: 30px;
    opacity: 0.85;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary {
    background: var(--secondary);
    color: var(--white);
    border: none;
}

.btn-hero-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    color: var(--white);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    color: var(--white);
}

/* Modern Carousel Indicators */
.carousel-indicators-modern {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 15;
    list-style: none;
    margin: 0;
    padding: 0;
}

.carousel-indicators-modern button {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.carousel-indicators-modern button.active {
    background: rgba(255, 255, 255, 0.8);
    width: 60px;
}

.carousel-indicators-modern button .indicator-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--secondary);
    border-radius: 3px;
}

.carousel-indicators-modern button.active .indicator-progress {
    animation: progressBar 5s linear forwards;
}

@keyframes progressBar {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* Hero Controls */
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition);
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next {
    opacity: 1;
}

.hero-section .carousel-control-prev {
    left: 30px;
}

.hero-section .carousel-control-next {
    right: 30px;
}

/* ------------------------------------------ */
/* ABOUT SECTION                              */
/* ------------------------------------------ */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-card {
    background: var(--white);
    border-radius: 28px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.about-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.about-text {
    color: var(--dark-light);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 25px;
}

.btn-about {
    background: var(--gradient-primary);
    padding: 12px 28px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
}

.btn-about:hover {
    transform: translateX(8px);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(10, 92, 74, 0.3);
}

.about-image {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about-image:hover {
    transform: scale(1.02);
}

/* ------------------------------------------ */
/* MODUL SECTION                              */
/* ------------------------------------------ */
.modul-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.modul-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.modul-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.modul-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.modul-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modul-card:hover .modul-img img {
    transform: scale(1.1);
}

.modul-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
}

.modul-content {
    padding: 20px;
}

.modul-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--dark);
}

.modul-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.modul-mapel {
    background: var(--primary-light);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
}

.modul-date {
    font-size: 10px;
    color: var(--gray);
}

.modul-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 15px;
}

.modul-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.modul-link:hover {
    gap: 10px;
    color: var(--secondary);
}

.pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
}

/* ------------------------------------------ */
/* REGISTRATION SECTION                       */
/* ------------------------------------------ */
.registration-section {
    background: var(--gradient-primary);
    padding: 80px 0;
}

.bg-white-20 {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.registration-card {
    background: var(--white);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.registration-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
}

.registration-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.registration-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.registration-icon i {
    font-size: 32px;
    color: var(--primary);
}

.registration-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.registration-date {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 15px;
}

.status-open {
    background: #d4edda;
    color: #155724;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin: 15px 0;
}

.status-closed {
    background: #f8d7da;
    color: #721c24;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin: 15px 0;
}

.btn-register {
    background: var(--gradient-secondary);
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    transition: var(--transition);
    display: inline-block;
    border: none;
}

.btn-register:hover {
    transform: scale(1.05);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.btn-register:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ------------------------------------------ */
/* PAYMENT SECTION - WITH CONTACT LIST        */
/* ------------------------------------------ */
.payment-section {
    padding: 80px 0;
    background: var(--white);
}

.payment-card {
    background: var(--white);
    border-radius: 28px;
    padding: 50px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.payment-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.payment-icon i {
    font-size: 36px;
    color: var(--primary);
}

.payment-card p {
    font-size: 16px;
    color: var(--dark-light);
    margin-bottom: 30px;
}

/* Contact List Style */
.contact-list {
    background: var(--gray-light);
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-icon i {
    font-size: 22px;
    color: var(--primary);
}

.contact-item-content h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #25d366;
    text-decoration: none;
    transition: var(--transition);
}

.contact-wa:hover {
    color: #128c7e;
    transform: translateX(5px);
}

.contact-wa i {
    font-size: 18px;
}

.payment-note {
    margin-top: 20px;
    padding: 12px;
    background: var(--primary-light);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--primary);
}

.payment-note i {
    font-size: 14px;
}

/* ------------------------------------------ */
/* TESTIMONIAL SECTION                        */
/* ------------------------------------------ */
.testimonial-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    padding: 30px;
    margin: 15px 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--primary);
    padding: 3px;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
}

.testimonial-position {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.testimonial-quote {
    font-size: 14px;
    color: var(--dark-light);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-quote i {
    color: var(--primary);
    font-size: 24px;
    margin-right: 8px;
    opacity: 0.5;
}

/* ------------------------------------------ */
/* TEACHER SECTION                            */
/* ------------------------------------------ */
.teacher-section {
    padding: 80px 0;
    background: var(--white);
}

.teacher-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.teacher-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.teacher-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.teacher-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.teacher-card:hover .teacher-img img {
    transform: scale(1.1);
}

.teacher-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    transition: var(--transition);
}

.teacher-card:hover .teacher-overlay {
    bottom: 0;
}

.teacher-overlay a {
    width: 38px;
    height: 38px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.teacher-overlay a:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.teacher-info {
    padding: 20px;
    text-align: center;
}

.teacher-name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
}

.teacher-position {
    font-size: 12px;
    color: var(--gray);
}

/* ------------------------------------------ */
/* CONTACT SECTION                            */
/* ------------------------------------------ */
.contact-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.contact-icon i {
    font-size: 28px;
    color: var(--primary);
}

.contact-card h5 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.5;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* ------------------------------------------ */
/* BUTTON DETAILS                             */
/* ------------------------------------------ */
.btn-details {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-details:hover {
    background: var(--primary);
    color: var(--white);
    gap: 12px;
}

/* ------------------------------------------ */
/* LOADING SPINNER                            */
/* ------------------------------------------ */
.spinner-custom {
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ------------------------------------------ */
/* MODAL GALLERY                              */
/* ------------------------------------------ */
.modal-gallery-img {
    max-height: 80vh;
    object-fit: contain;
}

/* ------------------------------------------ */
/* RESPONSIVE                                 */
/* ------------------------------------------ */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 54px;
    }
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
    .hero-content {
        bottom: 20%;
    }
    .section-title {
        font-size: 32px;
    }
    .about-card {
        padding: 30px;
    }
    .about-title {
        font-size: 24px;
        margin-top: 20px;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .carousel-indicators-modern button {
        width: 30px;
    }
    .carousel-indicators-modern button.active {
        width: 50px;
    }
}

@media (max-width: 768px) {
    .hero-section,
    .hero-section .carousel-item {
        min-height: 70vh;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-subtitle {
        font-size: 14px;
    }
    .hero-description {
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .hero-content {
        bottom: 15%;
    }
    .hero-buttons {
        gap: 10px;
    }
    .btn-hero {
        padding: 8px 20px;
        font-size: 12px;
    }
    .hero-section .carousel-control-prev,
    .hero-section .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    .hero-section .carousel-control-prev {
        left: 10px;
    }
    .hero-section .carousel-control-next {
        right: 10px;
    }
    .carousel-indicators-modern {
        bottom: 20px;
        gap: 8px;
    }
    .carousel-indicators-modern button {
        width: 25px;
        height: 2px;
    }
    .carousel-indicators-modern button.active {
        width: 40px;
    }
    .about-section,
    .modul-section,
    .registration-section,
    .payment-section,
    .testimonial-section,
    .teacher-section,
    .contact-section {
        padding: 50px 0;
    }
    .section-title {
        font-size: 28px;
    }
    .section-subtitle {
        font-size: 14px;
    }
    .about-title {
        font-size: 22px;
    }
    .about-text {
        font-size: 13px;
    }
    .modul-img {
        height: 150px;
    }
    .teacher-img {
        height: 240px;
    }
    .registration-card {
        padding: 25px 20px;
    }
    .payment-card {
        padding: 30px 20px;
    }
    .map-container,
    .map-container iframe {
        min-height: 300px;
        margin-top: 20px;
    }
    .contact-list {
        padding: 15px;
    }
    .contact-item {
        gap: 12px;
        padding: 10px 0;
    }
    .contact-item-icon {
        width: 40px;
        height: 40px;
    }
    .contact-item-icon i {
        font-size: 18px;
    }
    .contact-item-content h6 {
        font-size: 13px;
    }
    .contact-wa {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 26px;
    }
    .hero-subtitle {
        font-size: 12px;
    }
    .hero-description {
        font-size: 10px;
        -webkit-line-clamp: 2;
    }
    .btn-hero {
        padding: 6px 14px;
        font-size: 10px;
        gap: 5px;
    }
    .carousel-indicators-modern button {
        width: 20px;
    }
    .carousel-indicators-modern button.active {
        width: 30px;
    }
    .section-title {
        font-size: 24px;
    }
    .section-badge {
        font-size: 10px;
        padding: 4px 14px;
    }
    .about-card {
        padding: 20px;
    }
    .about-title {
        font-size: 20px;
    }
    .about-text {
        font-size: 12px;
    }
    .btn-about,
    .btn-details {
        padding: 8px 20px;
        font-size: 12px;
    }
    .modul-title {
        font-size: 14px;
    }
    .teacher-name {
        font-size: 15px;
    }
    .teacher-position {
        font-size: 11px;
    }
    .teacher-img {
        height: 200px;
    }
    .registration-icon {
        width: 55px;
        height: 55px;
    }
    .registration-icon i {
        font-size: 24px;
    }
    .registration-card h3 {
        font-size: 18px;
    }
    .testimonial-avatar {
        width: 65px;
        height: 65px;
    }
    .testimonial-name {
        font-size: 16px;
    }
    .testimonial-quote {
        font-size: 12px;
    }
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    .contact-icon i {
        font-size: 22px;
    }
    .contact-card h5 {
        font-size: 14px;
    }
    .contact-card p {
        font-size: 11px;
    }
    .map-container,
    .map-container iframe {
        min-height: 250px;
    }
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .contact-item-content h6 {
        text-align: center;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 22px;
    }
    .section-title {
        font-size: 20px;
    }
    .btn-hero {
        padding: 5px 12px;
        font-size: 9px;
    }
    .hero-badge {
        font-size: 9px;
        padding: 4px 10px;
    }
}
