/*-----------------------------------------------
|   VrijwilligersWFE Theme CSS
|   Version: 1.0.0
 ----------------------------------------------*/

:root {
    /* WFE Brand Colors - Blauw & Goud */
    --primary-blue: #1e5fa8;
    --primary-blue-light: #2e7fd8;
    --accent-gold: #c4982a;
    --accent-gold-light: #ddb94a;
    --success-green: #43a047;
    --bg-light: #f8f9fa;
    --bg-cream: #f5f7fa;
    --text-dark: #2c2c2c;
    --text-muted: #6c757d;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s ease;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Backwards compat aliassen */
    --primary-brown: var(--primary-blue);
    --primary-brown-light: var(--primary-blue-light);
    --accent-cyan: var(--accent-gold);
    --accent-cyan-light: var(--accent-gold-light);
    --accent-blue: var(--primary-blue);
    --accent-blue-light: var(--primary-blue-light);
    --danger-red: #dc3545;
}

/* Base */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navbar – transparant bovenaan, vult bij scrollen */
.navbar {
    transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
    padding: 1.25rem 0;
    background: transparent !important;
}

.navbar.scrolled {
    background: rgba(14, 48, 100, 0.97) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar-brand img {
    height: 75px;
    transition: height 0.35s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 55px;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-gold) !important;
}

/* Nav Buttons */
.nav-buttons {
    align-items: center;
}

.btn-nav {
    padding: 0.4rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-nav i {
    font-size: 0.9rem;
}

.btn-nav-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: white;
    border: none;
}

.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 152, 42, 0.35);
    color: white;
}

.btn-nav-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-nav-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

/* CTA Buttons */
.btn-cta-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: white;
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(196, 152, 42, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 152, 42, 0.4);
    color: white;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateY(-2px);
}

.btn-primary-blue {
    background: var(--primary-blue);
    color: white;
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-primary-blue:hover {
    background: var(--primary-blue-light);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(30,95,168,0.75), rgba(196,152,42,0.35)),
                url('../assets/img/backgrounds/hero-bg.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.25) 100%);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-accent {
    color: var(--accent-gold-light);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
    background: var(--bg-cream);
}

.content-section.bg-white   { background: white; }
.content-section.bg-light   { background: var(--bg-light); }
.content-section.bg-gradient-soft { background: linear-gradient(180deg, #f5f7fa 0%, #eef2f8 100%); }

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.text-primary-brown { color: var(--primary-blue); }

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.hexagon-bg {
    width: 70px;
    height: 75px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.feature-content p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Info Section */
.info-section {
    padding: 5rem 0;
    background: var(--bg-cream);
}

.content-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-text p {
    color: var(--text-dark);
    line-height: 1.7;
}

.content-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
}

/* Highlights List */
.highlights-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    font-weight: 500;
}

.highlight-hex {
    display: inline-block;
    flex-shrink: 0;
    width: 28px;
    height: 32px;
    background: #1e5fa8;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Navbar: op pagina's zónder hero-foto directe achtergrond voor leesbaarheid.
   Alleen actief als body-klasse 'no-hero' aanwezig is (optioneel in te stellen per template). */

/* Skewed Image Wrapper */
.skewed-image-wrapper {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.skewed-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.skewed-image-wrapper:hover .skewed-image {
    transform: scale(1.05);
}

/* Sponsors Ticker */
.footer-sponsors {
    padding-top: 1rem;
}

.footer-sponsors h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.sponsors-ticker-wrapper {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    background: rgba(255,255,255,0.05);
}

.sponsors-ticker-wrapper::before,
.sponsors-ticker-wrapper::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: 48px;
    pointer-events: none;
    z-index: 2;
}

.sponsors-ticker-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, rgba(14,48,100,1), rgba(14,48,100,0));
}

.sponsors-ticker-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, rgba(14,48,100,1), rgba(14,48,100,0));
}

.sponsors-ticker-track {
    display: flex;
    width: max-content;
    will-change: transform;
    transform: translate3d(0,0,0);
    animation: sponsorsMarquee var(--ticker-speed, 70s) linear infinite;
}

.sponsors-ticker {
    display: flex;
    align-items: center;
    gap: var(--ticker-gap, 4rem);
}

.sponsors-ticker a { display: inline-block; flex-shrink: 0; }

.sponsors-ticker img {
    height: 60px;
    width: auto;
    display: block;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    opacity: 0.75;
    transition: var(--transition);
}

.sponsors-ticker img:hover,
.sponsors-ticker a:hover img { opacity: 1; }

@keyframes sponsorsMarquee {
    from { transform: translate3d(0,0,0); }
    to   { transform: translate3d(-50%,0,0); }
}

@media (max-width: 991.98px) {
    .sponsors-ticker-track { --ticker-speed: 60s; }
    .sponsors-ticker { --ticker-gap: 2.25rem; }
    .sponsors-ticker img { height: 52px; }
}

@media (max-width: 575.98px) {
    .sponsors-ticker-track { --ticker-speed: 40s; }
    .sponsors-ticker { --ticker-gap: 1.25rem; }
    .sponsors-ticker img { height: 40px; }
    .sponsors-ticker-wrapper::before,
    .sponsors-ticker-wrapper::after { width: 28px; }
}

@media (prefers-reduced-motion: reduce) {
    .sponsors-ticker-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
    .sponsors-ticker { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .sponsors-ticker-wrapper::before,
    .sponsors-ticker-wrapper::after { display: none; }
}

/* Page Hero */
.page-hero {
    min-height: 400px;
    background: var(--primary-blue);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 150px 0 80px;
    text-align: center;
}

.page-hero-short {
    min-height: 350px;
    padding: 130px 0 60px;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(14, 48, 100, 0.72) 0%,
        rgba(14, 48, 100, 0.55) 50%,
        rgba(14, 48, 100, 0.75) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-content-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 2rem 3rem;
    display: inline-block;
}

.page-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.page-breadcrumb {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.5rem;
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.page-breadcrumb a:hover { color: var(--accent-gold); }

.page-breadcrumb .separator {
    margin: 0 0.5rem;
    opacity: 0.5;
}

.page-breadcrumb .current { color: rgba(255, 255, 255, 0.95); }

/* Page Content */
.page-content {
    padding: 4rem 0;
    background: white;
}

.content-article {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.content-article h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.content-article h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content-article p { margin-bottom: 1.25rem; }
.content-article ul, .content-article ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.content-article li { margin-bottom: 0.5rem; }
.content-article img { max-width: 100%; height: auto; border-radius: var(--radius-md); margin: 1.5rem 0; }

/* Footer */
.site-footer {
    background: linear-gradient(160deg, #0e3064, #1a4f92);
    color: white;
    position: relative;
    margin-top: 80px;
}

.footer-skew-top {
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 80px;
    background: #0e3064;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.footer-content {
    padding: 3rem 0 2rem;
}

.footer-content h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-gold-light);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover { color: var(--accent-gold); }

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li { margin-bottom: 0.5rem; }

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-nav a:hover { color: var(--accent-gold); }

.footer-bottom {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Offcanvas */
.offcanvas {
    background: linear-gradient(160deg, #0e3064, #1a4f92);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-body .navbar-nav .nav-link {
    padding: 1rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact Page */
.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-info-card {
    background: var(--bg-cream);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    position: sticky;
    top: 120px;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.contact-info-content p {
    margin-bottom: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-info-content a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-content a:hover { color: var(--accent-gold); }

.contact-social-links {
    display: flex;
    gap: 1rem;
}

.contact-social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.contact-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.contact-social-btn i { font-size: 1.25rem; }
.contact-social-btn:has(.bi-facebook):hover  { background: #1877f2; }
.contact-social-btn:has(.bi-instagram):hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }

/* Contact Form 7 Styling */
.wpcf7-form { margin-top: 1rem; }
.wpcf7-form p { margin-bottom: 1.25rem; }

.wpcf7-form label {
    display: block;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 95, 168, 0.12);
}

.wpcf7-form textarea { min-height: 150px; resize: vertical; }

.wpcf7-form input[type="submit"] {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 95, 168, 0.3);
}

.wpcf7-response-output {
    margin: 1rem 0 0 !important;
    padding: 1rem !important;
    border-radius: var(--radius-sm) !important;
}

.wpcf7-validation-errors {
    border-color: #f8d7da !important;
    background: #f8d7da !important;
    color: #721c24 !important;
}

.wpcf7-mail-sent-ok {
    border-color: #d4edda !important;
    background: #d4edda !important;
    color: #155724 !important;
}

.wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* FAQ Styling */
.faq-accordion { max-width: 100%; margin: 0 auto; }

.faq-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-gold);
}

.faq-category-title:first-child { margin-top: 0; }

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    align-items: start;
}

@media (max-width: 767.98px) {
    .faq-grid { grid-template-columns: 1fr; }
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-item-icon {
    flex-shrink: 0;
    width: 37px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.faq-item-content { flex: 1; }

.faq-item-question {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.0625rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item-question .toggle-icon {
    color: var(--accent-gold);
    transition: var(--transition);
}

.faq-item-question.active .toggle-icon { transform: rotate(180deg); }

.faq-item-answer {
    color: var(--text-muted);
    line-height: 1.7;
    display: none;
    padding-top: 0.75rem;
}

.faq-item-answer.show { display: block; }

/* Accordion (Bootstrap) */
.faq-accordion .accordion-item {
    border: 1px solid #e9ecef;
    border-radius: var(--radius-sm) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    color: var(--primary-blue);
    background: white;
    padding: 1.25rem 1.5rem;
    font-size: 1.0625rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--bg-cream);
    color: var(--primary-blue);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus { box-shadow: none; }

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231e5fa8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    padding: 1.5rem;
    background: #fafbfc;
    color: var(--text-dark);
    line-height: 1.7;
}

.faq-accordion .accordion-body p:last-child { margin-bottom: 0; }

/* Utility */
.btn-outline-primary {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-title { font-size: 2.5rem; }
}

@media (max-width: 767.98px) {
    .page-hero { min-height: 300px; padding: 120px 0 60px; }
    .page-hero-content-box { padding: 1.5rem; }
}
