/* ============================================================
 * Santana Fe & Esperanca -- Tema "Luz da Manha"
 * Inspiracao: paginas de Biblia envelhecida + dourado refinado +
 * azul-ceu suave. Atmosfera calma, esperancosa, contemplativa.
 * ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@400;500;600&display=swap');

:root {
    /* Fundos -- creme/marfim quentes (paginas de Biblia) */
    --bg-primary: #fbf8f1;
    --bg-secondary: #f5ecd9;
    --bg-card: #ffffff;
    --bg-elevated: #faf3e3;

    /* Texto -- marrom quente (nunca preto puro) */
    --text-primary: #2c2419;
    --text-secondary: #6b5d4f;
    --text-muted: #9a8a78;

    /* Dourado refinado + azul ceu */
    --accent: #b8884a;
    --accent-hover: #9c6f33;
    --accent-light: #e8c98a;
    --accent-soft: #fef2d6;
    --secondary: #5e7a8c;
    --secondary-light: #a3b8c5;

    /* Bordas e sombras suaves */
    --border: #e8dccb;
    --border-soft: #f0e7d3;
    --shadow-sm: 0 1px 3px rgba(139, 109, 71, 0.06);
    --shadow-md: 0 6px 20px rgba(139, 109, 71, 0.10);
    --shadow-lg: 0 14px 40px rgba(139, 109, 71, 0.12);

    --max-width: 1140px;
    --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Lora', Georgia, 'Times New Roman', serif;
    --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.75;
    font-size: 17px;
    overflow-x: hidden;
    /* Textura sutil de papel */
    background-image:
        radial-gradient(at 20% 0%, rgba(232, 201, 138, 0.10) 0%, transparent 50%),
        radial-gradient(at 80% 100%, rgba(94, 122, 140, 0.06) 0%, transparent 50%);
    background-attachment: fixed;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }

/* ============================================================
 * HEADER
 * ============================================================ */
.site-header {
    background: rgba(251, 248, 241, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.logo { display: flex; flex-direction: column; }
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1px;
    line-height: 1.1;
}
.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 2px;
}

.main-nav {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
    flex: 1;
}
.nav-link {
    font-family: var(--font-ui);
    color: var(--text-secondary);
    padding: 0.4rem 0.9rem;
    border-radius: 24px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.25s;
}
.nav-link:hover {
    color: var(--accent-hover);
    background: var(--accent-soft);
}

/* ============================================================
 * BUSCA
 * ============================================================ */
.search-box { position: relative; }
.search-box input {
    font-family: var(--font-ui);
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.55rem 1.1rem;
    border-radius: 24px;
    font-size: 0.9rem;
    width: 220px;
    transition: width 0.3s, border-color 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-sm);
}
.search-box input::placeholder { color: var(--text-muted); }
.search-box input:focus {
    width: 300px;
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft);
}
.search-results {
    position: absolute;
    top: 100%;
    right: 0;
    width: 360px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-top: 0.6rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.search-results.hidden { display: none; }
.search-result {
    display: block;
    padding: 0.9rem 1.1rem;
    border-bottom: 1px solid var(--border-soft);
    color: var(--text-primary);
    font-family: var(--font-body);
}
.search-result:last-child { border-bottom: none; }
.search-result:hover { background: var(--accent-soft); }
.search-result strong { display: block; color: var(--text-primary); font-weight: 600; }
.search-result span { font-size: 0.78rem; color: var(--text-muted); font-style: italic; }

/* ============================================================
 * HERO
 * ============================================================ */
.hero {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(232, 201, 138, 0.35) 0%, transparent 60%),
        linear-gradient(180deg, #fbf8f1 0%, #f5ecd9 100%);
    padding: 6rem 1.5rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-soft);
}
/* Raios de luz sutis vindo do topo */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(232, 201, 138, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.5px;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 24px rgba(184, 136, 74, 0.20);
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.hero-tagline {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2.5rem;
    font-weight: 400;
}
/* Floreio decorativo entre tagline e versiculo */
.hero-content::before {
    content: '✦';
    display: block;
    color: var(--accent-light);
    font-size: 1.2rem;
    margin: 1rem 0;
    text-align: center;
}
.hero-verse {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-primary);
    font-size: 1.15rem;
    line-height: 1.7;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    border-left: 3px solid var(--accent);
    border-right: 3px solid var(--accent);
    box-shadow: var(--shadow-sm);
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}
.hero-verse::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 16px;
    font-size: 4rem;
    color: var(--accent-light);
    font-family: Georgia, serif;
    line-height: 1;
}

/* ============================================================
 * SECOES
 * ============================================================ */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 1.5rem;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
}
.section-title::after {
    content: '✦';
    display: block;
    margin: 0.6rem auto 0;
    color: var(--accent);
    font-size: 1rem;
}

/* ============================================================
 * CARDS DE MENSAGENS
 * ============================================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-light), var(--accent), var(--accent-light));
    opacity: 0;
    transition: opacity 0.3s;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}
.card:hover::before { opacity: 1; }
.card-body { padding: 1.6rem 1.4rem; }
.card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.7rem;
}
.card-body h3 a {
    color: var(--text-primary);
    transition: color 0.2s;
}
.card-body h3 a:hover { color: var(--accent); }
.card-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-soft);
}
.card-category {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
}
.card-date {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================================
 * SLIDESHOW DE MENSAGENS
 * ============================================================ */
.slideshow {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    background: var(--bg-elevated);
    aspect-ratio: 16 / 9;
    max-height: 580px;
    outline: none;
}
.slideshow:focus-visible {
    box-shadow: var(--shadow-lg), 0 0 0 4px var(--accent-soft);
}
.slideshow-track {
    display: flex;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.slide {
    flex: 0 0 100%;
    height: 100%;
    overflow: hidden;
}
.slide-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
    position: relative;
}
.slide-thumb {
    width: 100%;
    height: 100%;
    background-color: var(--accent-soft);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide-link:hover .slide-thumb { transform: scale(1.04); }
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(44, 36, 25, 0.05) 0%,
        rgba(44, 36, 25, 0.45) 55%,
        rgba(44, 36, 25, 0.88) 100%);
}
.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 3.5rem 3.2rem;
    color: #fff;
    text-align: left;
    z-index: 2;
    max-width: 760px;
}
.slide-category {
    display: inline-block;
    font-family: var(--font-ui);
    background: var(--accent);
    color: #fff;
    padding: 0.32rem 0.95rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.slide-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 0.9rem;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
    letter-spacing: 0.3px;
}
.slide-excerpt {
    font-family: var(--font-body);
    font-size: 1.08rem;
    line-height: 1.6;
    margin-bottom: 1.6rem;
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
    max-width: 620px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--accent);
    color: #fff;
    padding: 0.85rem 1.7rem;
    border-radius: 32px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.92rem;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 14px rgba(184, 136, 74, 0.45);
}
.slide-btn svg { transform: translateX(1px); }
.slide-link:hover .slide-btn {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 136, 74, 0.55);
}

/* Botoes prev/next */
.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.92);
    border: none;
    color: var(--accent);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: all 0.25s;
}
.slideshow-prev { left: 1.4rem; }
.slideshow-next { right: 1.4rem; }
.slideshow-nav:hover {
    background: #fff;
    color: var(--accent-hover);
    transform: translateY(-50%) scale(1.1);
}
.slideshow-nav:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px var(--accent-soft), 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* Dots */
.slideshow-dots {
    position: absolute;
    bottom: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.55rem;
    z-index: 10;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    transition: all 0.25s;
    padding: 0;
}
.dot:hover { background: rgba(255, 255, 255, 0.5); }
.dot.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.25);
}
.dot:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.slideshow-loading,
.slideshow-empty {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--text-secondary);
    font-style: italic;
    padding: 3rem 1.5rem;
    text-align: center;
}

/* ============================================================
 * GRID DE CATEGORIAS
 * ============================================================ */
.categories-section {
    background: var(--bg-secondary);
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.2rem;
}
.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--accent-soft) 100%);
    border-color: var(--accent-light);
}
.category-icon {
    font-size: 2.4rem;
    margin-bottom: 0.6rem;
    filter: drop-shadow(0 2px 6px rgba(184, 136, 74, 0.20));
}
.category-card h3 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
}

/* ============================================================
 * SOBRE
 * ============================================================ */
.about-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid var(--border-soft);
}
.about-text {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.85;
    margin: 0 auto 1.4rem;
    max-width: 720px;
    text-align: center;
    font-family: var(--font-body);
}

/* ============================================================
 * PAGINA DE ARTIGO
 * ============================================================ */
.article-page {
    max-width: 780px;
    margin: 3rem auto;
    padding: 3rem 2.5rem;
    background: var(--bg-card);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
}
.article-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 0 0 4px 4px;
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.category-badge {
    background: var(--accent-soft);
    color: var(--accent-hover);
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-ui);
    border: 1px solid var(--accent-light);
}
.article-meta time {
    font-family: var(--font-ui);
    color: var(--text-muted);
    font-size: 0.85rem;
}
.article-page h1 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1.8rem;
    color: var(--text-primary);
    letter-spacing: 0.3px;
}
.article-content {
    font-family: var(--font-body);
}
.article-content p {
    margin-bottom: 1.4rem;
    color: var(--text-primary);
    font-size: 1.08rem;
    line-height: 1.85;
}
/* Primeiro paragrafo (versiculo) tratado como destaque */
.article-content p:first-child {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--text-primary);
    padding: 1.8rem 2rem;
    background: var(--accent-soft);
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
    margin: 1rem 0 2.2rem;
    position: relative;
}
.article-content p:first-child::before {
    content: '"';
    position: absolute;
    top: -8px;
    left: 12px;
    font-size: 3rem;
    color: var(--accent-light);
    line-height: 1;
    font-family: Georgia, serif;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.video-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

.article-tags {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-soft);
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.tag {
    font-family: var(--font-ui);
    background: var(--bg-elevated);
    color: var(--text-secondary);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.78rem;
    border: 1px solid var(--border-soft);
    transition: all 0.2s;
}
.tag:hover {
    background: var(--accent-soft);
    color: var(--accent-hover);
    border-color: var(--accent-light);
}

/* ============================================================
 * FOOTER
 * ============================================================ */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    margin-top: 5rem;
    padding: 4rem 1.5rem 1.5rem;
    position: relative;
}
.site-footer::before {
    content: '✦';
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-primary);
    color: var(--accent);
    padding: 0 1rem;
    font-size: 1.2rem;
}
.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}
.footer-section h3 {
    font-family: var(--font-heading);
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
    font-family: var(--font-body);
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
    max-width: var(--max-width);
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-soft);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-family: var(--font-ui);
}

/* ============================================================
 * RESPONSIVO
 * ============================================================ */
@media (max-width: 768px) {
    body { font-size: 16px; }
    .header-container { flex-wrap: wrap; gap: 1rem; padding: 0.9rem 1.2rem; }
    .main-nav { order: 3; width: 100%; }
    .hero { padding: 3.5rem 1.2rem 2.8rem; }
    .hero-title { font-size: 2.2rem; }
    .hero-tagline { font-size: 1rem; margin-bottom: 1.5rem; }
    .hero-verse { font-size: 0.98rem; padding: 1.4rem 1.3rem; }
    .section-container { padding: 3rem 1.2rem; }
    .section-title { font-size: 1.7rem; }
    .article-page { margin: 1.5rem 0.8rem; padding: 2rem 1.3rem; border-radius: 12px; }
    .article-page h1 { font-size: 1.7rem; }
    .article-content p:first-child { font-size: 1.1rem; padding: 1.2rem 1.2rem; }
    .article-content p { font-size: 1rem; }
    .search-box input { width: 100%; }
    .search-box input:focus { width: 100%; }
    .search-box { width: 100%; }

    .slideshow { aspect-ratio: 4 / 3; max-height: none; }
    .slide-content { padding: 1.6rem 1.5rem 2rem; }
    .slide-title { font-size: 1.6rem; }
    .slide-excerpt { font-size: 0.92rem; -webkit-line-clamp: 2; margin-bottom: 1.1rem; }
    .slide-btn { padding: 0.7rem 1.3rem; font-size: 0.85rem; }
    .slideshow-nav { width: 40px; height: 40px; }
    .slideshow-prev { left: 0.7rem; }
    .slideshow-next { right: 0.7rem; }
    .slideshow-nav svg { width: 16px; height: 16px; }
    .slideshow-dots { bottom: 0.8rem; }
}

@media (max-width: 480px) {
    .hero { padding: 2.5rem 0.8rem 2.2rem; }
    .hero-title { font-size: 1.55rem; letter-spacing: 0; }
    .hero-tagline { font-size: 0.9rem; }
    .hero-verse { font-size: 0.88rem; padding: 1.2rem 1rem; line-height: 1.6; max-width: 100%; }
    .hero-verse::before { font-size: 2.6rem; left: 8px; top: -6px; }
    .section-container { padding: 2.5rem 0.8rem; }
    .section-title { font-size: 1.5rem; }
    .article-page { margin: 1rem 0.6rem; padding: 1.5rem 1rem; }
    .article-page h1 { font-size: 1.4rem; }
    .article-content p:first-child { font-size: 1rem; padding: 1.1rem 1rem; }
    .card-body h3 { font-size: 1.2rem; }
    .logo-text { font-size: 1.15rem; letter-spacing: 0.5px; }
}
