/* ==========================================================================
   Kasinotäti.com - Cozy Grandma Design System (Vanilla CSS)
   ========================================================================== */

/* Google Fonts Import: Fraunces (serif for headings) and Nunito (cozy rounded sans-serif for body) */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700;9..144,800&family=Nunito:wght@400;600;700;800&display=swap');

:root {
    /* Color Palette */
    --bg-main: #fdfaf5; /* Warm Creamy Ivory */
    --bg-surface: #ffffff; /* Pure White Card */
    --bg-surface-glow: rgba(255, 255, 255, 0.95);
    
    /* Hand-stitched line styling */
    --border-color: rgba(62, 42, 36, 0.12);
    --border-glow: rgba(217, 107, 134, 0.25);
    
    --primary: #d96b86; /* Dusty Rose / Warm Pink */
    --primary-glow: rgba(217, 107, 134, 0.35);
    --primary-hover: #c44f6c;
    
    --secondary: #5a8c71; /* Sage Wool Green */
    --secondary-glow: rgba(90, 140, 113, 0.3);
    
    --danger: #d9534f;
    --danger-bg: rgba(217, 83, 79, 0.08);
    
    /* Typographic Colors */
    --text-primary: #3a2c28; /* Warm Dark Cocoa */
    --text-secondary: #6e5b56; /* Soft Brown */
    --text-muted: #96837e;
    --text-inverse: #ffffff;
    
    /* Layout */
    --max-width: 1100px;
    --border-radius-sm: 10px;
    --border-radius-md: 20px;
    --border-radius-lg: 30px;
    
    /* Font Families */
    --font-heading: 'Fraunces', Georgia, serif;
    --font-body: 'Nunito', 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}

/* Custom Scrollbar (warm cocoa scrollbar) */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: #e8ded2;
    border-radius: var(--border-radius-sm);
    border: 3px solid var(--bg-main);
}
::-webkit-scrollbar-thumb:hover {
    background: #d0c2b5;
}

/* Containers */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

h1 {
    font-size: 2.85rem;
    margin-bottom: 1.25rem;
}

h2 {
    font-size: 2.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

/* Cute stitched underline for major headings */
h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: repeating-linear-gradient(90deg, var(--primary), var(--primary) 4px, transparent 4px, transparent 8px);
    margin-top: 0.5rem;
    border-radius: 2px;
}

h3 {
    font-size: 1.55rem;
    margin-bottom: 0.85rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.15rem;
    font-size: 1.05rem;
}

/* Text Accents & Badges */
.text-gradient {
    color: var(--primary);
}

.text-sage {
    color: var(--secondary);
}

/* Logo Image Styling */
.logo-img {
    width: 48px !important;
    height: 48px !important;
    max-width: 48px !important;
    max-height: 48px !important;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 0 3px 10px rgba(62, 42, 36, 0.08);
    object-fit: cover;
}

/* Header & Navigation (Stitched ribbon style) */
.site-header {
    background-color: rgba(253, 250, 245, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px dashed var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-normal);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo span {
    letter-spacing: -0.02em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-link {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-secondary);
    position: relative;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background-color: #f7ede2;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 22px;
    justify-content: space-between;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* Mobile Nav */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-main);
        border-bottom: 2px dashed var(--border-color);
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.25rem;
        align-items: stretch;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
}

/* Hero Section (Warm living room feel) */
.hero {
    padding: 4.5rem 0 3.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: radial-gradient(circle, rgba(217, 107, 134, 0.05) 0%, rgba(253, 250, 245, 0) 70%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.25rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.65;
    margin-bottom: 2.25rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0 2rem;
    }
    .hero h1 {
        font-size: 2.35rem;
    }
    .hero p {
        font-size: 1.05rem;
    }
}

/* Cozy Ribbon Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border: 1.5px dashed transparent;
}

.badge-primary {
    background-color: #fcecef;
    border-color: rgba(217, 107, 134, 0.4);
    color: var(--primary);
}

.badge-gold {
    background-color: #f7ede2;
    border-color: rgba(62, 42, 36, 0.2);
    color: var(--text-primary);
}

.badge-hot {
    background-color: var(--danger-bg);
    border-color: rgba(217, 83, 79, 0.3);
    color: var(--danger);
}

/* Friendly Cozy Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 50px; /* Pillow-like rounded buttons */
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-fast);
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-inverse);
    box-shadow: 0 4px 15px rgba(217, 107, 134, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(217, 107, 134, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #faf0e6;
    border: 2px dashed var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: #f5e4d3;
    transform: translateY(-2px);
}

.btn-outline-gold {
    border: 2px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.btn-outline-gold:hover {
    background-color: rgba(217, 107, 134, 0.05);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.55rem 1.25rem;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

/* Grandma Filters (Knitting yarn tag buttons) */
.filter-tabs {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 2.25rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar {
    display: none;
}

.filter-tab {
    background-color: var(--bg-surface);
    border: 2px dashed var(--border-color);
    color: var(--text-secondary);
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.filter-tab:hover {
    background-color: #faf4ed;
    color: var(--text-primary);
    border-color: var(--primary);
}

.filter-tab.active {
    background-color: #fcecef;
    border-color: var(--primary);
    color: var(--primary);
}

/* Stitched Casino Card Component */
.casino-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.casino-card {
    background-color: var(--bg-surface);
    border: 2px dashed var(--border-color); /* Hand-stitched knit border */
    border-radius: var(--border-radius-md);
    padding: 1.75rem;
    display: grid;
    grid-template-columns: 90px 1.5fr 1fr 1fr 1.2fr;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition-normal);
    position: relative;
    box-shadow: 0 4px 20px rgba(62, 42, 36, 0.04);
}

.casino-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(217, 107, 134, 0.1);
    transform: translateY(-2px);
}

.casino-card.featured {
    border: 2px dashed var(--primary);
    background-color: #fffafb;
}

.casino-rank {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary);
    color: var(--text-inverse);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-bottom-right-radius: 12px;
    font-family: var(--font-body);
}

.casino-logo-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Cozy square with rounded corners */
.casino-logo {
    background-color: #faf6f0;
    border: 2px dashed rgba(62, 42, 36, 0.15);
    border-radius: 18px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-primary);
    font-size: 1.25rem;
    text-align: center;
    padding: 0.5rem;
    text-transform: uppercase;
}

.casino-info-col h3 {
    margin-bottom: 0.35rem;
    font-size: 1.4rem;
    font-family: var(--font-heading);
}

/* Coffee Cup Ratings */
.casino-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.casino-stars {
    display: flex;
    gap: 4px;
}

.casino-stars svg {
    width: 18px;
    height: 18px;
    fill: #b39282; /* Cozy brown coffee color */
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.05));
}

.casino-stars svg.active {
    fill: var(--primary); /* Steaming pink coffee cup! */
}

.casino-bonus-col {
    display: flex;
    flex-direction: column;
}

.bonus-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.bonus-value {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.casino-details-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.detail-item svg {
    width: 16px;
    height: 16px;
    color: var(--secondary); /* Sage green checks */
    flex-shrink: 0;
}

.casino-action-col {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    text-align: center;
}

.terms-link {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.terms-link:hover {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* Casino Card Responsiveness */
@media (max-width: 992px) {
    .casino-card {
        grid-template-columns: 90px 1.2fr 1fr 1fr;
        gap: 1.25rem;
    }
    .casino-action-col {
        grid-column: span 4;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        border-top: 2px dashed var(--border-color);
        padding-top: 1.25rem;
        margin-top: 0.5rem;
    }
    .casino-action-col .btn {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .casino-card {
        grid-template-columns: 80px 1fr;
        gap: 1.25rem;
        padding: 1.5rem;
    }
    .casino-bonus-col, .casino-details-col {
        grid-column: span 2;
    }
    .casino-bonus-col {
        border-top: 2px dashed var(--border-color);
        padding-top: 1rem;
    }
    .casino-action-col {
        grid-column: span 2;
    }
}

/* Slots Grid layout (Granny's game collection) */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.slot-card {
    background-color: var(--bg-surface);
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(62, 42, 36, 0.04);
}

.slot-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(62, 42, 36, 0.08);
}

.slot-img-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    background-color: #faf5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px dashed var(--border-color);
}

.slot-placeholder-icon {
    font-size: 3.5rem;
    filter: drop-shadow(0 2px 4px rgba(62, 42, 36, 0.1));
}

.slot-rtp-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: var(--bg-surface);
    border: 2px dashed var(--border-color);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    color: var(--text-primary);
}

.slot-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.slot-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
}

.slot-provider {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.slot-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background-color: #faf6f0;
    padding: 0.85rem;
    border-radius: 12px;
    border: 2px dashed rgba(62, 42, 36, 0.08);
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stat-val {
    font-weight: 700;
    font-size: 0.95rem;
}

.slot-card .btn {
    margin-top: auto;
}

/* Detailed Review Page Styling */
.review-header {
    background: linear-gradient(180deg, rgba(217, 107, 134, 0.05) 0%, rgba(253, 250, 245, 0) 100%);
    padding: 3.5rem 0 2rem;
    border-bottom: 2px dashed var(--border-color);
}

.review-header-grid {
    display: grid;
    grid-template-columns: 130px 1.5fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.review-logo {
    width: 120px;
    height: 120px;
    font-size: 2.2rem;
    border-radius: 24px;
}

.review-header-info h1 {
    font-size: 2.85rem;
    margin-bottom: 0.5rem;
}

.review-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.25rem;
}

.review-meta-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.review-meta-item svg {
    color: var(--primary);
    width: 18px;
    height: 18px;
}

.review-summary-card {
    background-color: var(--bg-surface);
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 4px 20px rgba(62, 42, 36, 0.04);
}

@media (max-width: 768px) {
    .review-header-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .review-logo {
        margin: 0 auto;
    }
    .review-meta {
        justify-content: center;
    }
}

.review-content {
    padding: 3.5rem 0;
}

.review-grid {
    display: grid;
    grid-template-columns: 2.1fr 1fr;
    gap: 3rem;
}

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

/* Pros and Cons Boxes */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

@media (max-width: 576px) {
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
}

.pros-box, .cons-box {
    background-color: var(--bg-surface);
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.75rem;
}

.pros-box h4, .cons-box h4 {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.2rem;
}

.pros-box h4 {
    color: var(--secondary);
}

.cons-box h4 {
    color: var(--primary);
}

.pros-cons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.pros-cons-list li {
    font-size: 0.95rem;
    display: flex;
    gap: 0.6rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.pros-cons-list li::before {
    content: '☕'; /* Replaced checkmark with coffee! */
    font-size: 0.95rem;
}

.cons-list li::before {
    content: '⚠️'; /* Warning emoji */
    font-size: 0.95rem;
}

/* Cozy Info Table specs */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.spec-table tr {
    border-bottom: 2px dashed rgba(62, 42, 36, 0.08);
}

.spec-table tr:last-child {
    border-bottom: none;
}

.spec-table td {
    padding: 0.85rem 0.5rem;
}

.spec-table td:first-child {
    color: var(--text-muted);
    font-weight: 700;
}

.spec-table td:last-child {
    text-align: right;
    font-weight: 800;
}

/* Grandma FAQ Section */
.faq-section {
    padding: 4.5rem 0;
    background-color: #faf6f0;
    border-top: 2px dashed var(--border-color);
}

.faq-list {
    max-width: 800px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background-color: var(--bg-surface);
    border: 2px dashed var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-question {
    padding: 1.4rem;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    font-size: 1.15rem;
    font-family: var(--font-heading);
    color: var(--text-primary);
}

.faq-answer {
    padding: 0 1.4rem 1.4rem;
    color: var(--text-secondary);
    display: none;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(217, 107, 134, 0.06);
}

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

.faq-icon {
    font-size: 1.3rem;
    transition: var(--transition-fast);
    color: var(--text-muted);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

/* SEO Content Block (Warm letter writing style) */
.seo-block {
    padding: 4.5rem 0;
    border-top: 2px dashed var(--border-color);
}

.seo-text {
    max-width: 850px;
    margin: 0 auto;
}

.seo-text h2 {
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
}

.seo-text h3 {
    margin-top: 2.25rem;
    margin-bottom: 0.85rem;
    font-family: var(--font-heading);
}

.seo-text p {
    margin-bottom: 1.35rem;
    font-size: 1.05rem;
    line-height: 1.75;
}

.seo-text ul {
    margin-bottom: 1.35rem;
    padding-left: 1.75rem;
}

.seo-text li {
    margin-bottom: 0.65rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Footer styling */
.site-footer {
    background-color: #2b1f1c; /* Soft dark brown instead of black */
    border-top: 2px dashed var(--border-color);
    padding: 4.5rem 0 2.5rem;
    font-size: 0.9rem;
    color: #bfaea8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-col h4 {
    color: var(--text-inverse);
    margin-bottom: 1.4rem;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.disclaimer {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.85rem;
    line-height: 1.6;
}

.eighteen-badge {
    display: inline-block;
    border: 2px solid #bfaea8;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    line-height: 28px;
    text-align: center;
    font-weight: 800;
    font-size: 0.8rem;
}
