/*
Theme Name: Costa Advogado
Theme URI: https://www.costaadvogado.com.br
Author: Fernando Costa Sociedade Individual de Advocacia
Author URI: https://www.costaadvogado.com.br
Description: Tema institucional para escritório de advocacia — Fernando Costa Advogado, Florianópolis/SC. Atuação em Direito Imobiliário, Família, Consumidor, Sucessões, Contratos e Previdenciário.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Privado — uso exclusivo Fernando Costa Sociedade Individual de Advocacia
Text Domain: costa-advogado
Tags: advocacia, institucional, direito, florianopolis
*/

/* ════════════════════════════════════════
   RESET + BASE
════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: #F5F2EC; color: #102A43; min-height: 100vh; -webkit-font-smoothing: antialiased; }

/* ════════════════════════════════════════
   TIPOGRAFIA
════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
body, p, span, button, input, textarea, div, li, a, label {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
}
p { line-height: 1.75; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ════════════════════════════════════════
   SCROLLBAR
════════════════════════════════════════ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #F5F2EC; }
::-webkit-scrollbar-thumb { background: #C8C0B5; border-radius: 3px; }

/* ════════════════════════════════════════
   ANIMAÇÃO
════════════════════════════════════════ */
.fade-in { animation: fadeUp .38s ease both; }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════
   LAYOUT
════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 64px 24px; }
.section-pad-sm { padding: 36px 24px; }

/* ════════════════════════════════════════
   GRIDS RESPONSIVOS
════════════════════════════════════════ */
.g-hero    { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 64px; align-items: center; }
.g-2       { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.g-2-loose { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.g-3       { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.g-4       { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.g-aside-l { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 64px; align-items: start; }
.g-aside-r { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 20px; }
.g-blog    { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 20px; }
.g-contact { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 20px; align-items: start; }
.g-footer  { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 48px; }
.g-form    { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ════════════════════════════════════════
   COMPONENTES
════════════════════════════════════════ */
.card {
    background: #fff;
    border: 1px solid #DDD7CC;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 2px 12px rgba(16,42,67,.06);
    transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(16,42,67,.11); }

.tag {
    font-size: 12px;
    font-weight: 500;
    color: #8A6F4D;
    text-transform: uppercase;
    letter-spacing: .2em;
}

/* Botões */
.btn-p {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 12px 22px; border-radius: 14px;
    font-size: 14px; font-weight: 500; cursor: pointer;
    border: none; background: #123B63; color: #fff;
    box-shadow: 0 2px 10px rgba(18,59,99,.2);
    transition: transform .15s, box-shadow .15s;
    letter-spacing: -0.01em; text-decoration: none;
    font-family: 'DM Sans', system-ui, sans-serif;
}
.btn-p:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(18,59,99,.3); color: #fff; }

.btn-s {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 12px 22px; border-radius: 14px;
    font-size: 14px; font-weight: 500; cursor: pointer;
    border: 1px solid #CFC6BA; background: #fff; color: #102A43;
    box-shadow: 0 1px 4px rgba(16,42,67,.06);
    transition: background .15s; letter-spacing: -0.01em;
    font-family: 'DM Sans', system-ui, sans-serif;
}
.btn-s:hover { background: #F0EDE7; color: #102A43; }

.btn-g {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 12px 22px; border-radius: 14px;
    font-size: 14px; font-weight: 500; cursor: pointer;
    border: 1px solid rgba(255,255,255,.28); background: transparent; color: #fff;
    transition: background .15s;
    font-family: 'DM Sans', system-ui, sans-serif;
}
.btn-g:hover { background: rgba(255,255,255,.1); }

/* Botão bege — para uso em fundos escuros (seção navy) */
.btn-gold {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 12px 22px; border-radius: 14px;
    font-size: 14px; font-weight: 600; cursor: pointer;
    border: none; background: #E8E2D8; color: #123B63;
    box-shadow: 0 2px 10px rgba(232,226,216,.25);
    transition: transform .15s, box-shadow .15s, background .15s;
    letter-spacing: -0.01em; text-decoration: none;
    font-family: 'DM Sans', system-ui, sans-serif;
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(232,226,216,.35); background: #DDD6CB; color: #123B63; }

/* Botão WhatsApp — mantém estilo institucional, ícone identifica o canal */
.btn-wa {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 12px 22px; border-radius: 14px;
    font-size: 14px; font-weight: 500; cursor: pointer;
    border: none; background: #123B63; color: #fff;
    box-shadow: 0 2px 10px rgba(18,59,99,.2);
    transition: transform .15s, box-shadow .15s;
    letter-spacing: -0.01em; text-decoration: none;
    font-family: 'DM Sans', system-ui, sans-serif;
}
.btn-wa:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(18,59,99,.3); color: #fff; }
/* Botão WhatsApp verde — páginas internas e seção Sobre na home */
.btn-wa-green {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 12px 22px; border-radius: 14px;
    font-size: 14px; font-weight: 600; cursor: pointer;
    border: none; background: #25D366; color: #123B63;
    box-shadow: 0 2px 12px rgba(37,211,102,.35);
    transition: transform .15s, box-shadow .15s, background .15s;
    letter-spacing: -0.01em; text-decoration: none;
    font-family: 'DM Sans', system-ui, sans-serif;
}
.btn-wa-green:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,211,102,.45); background: #20ba5a; color: #123B63; }


/* Area cards */
.area-card {
    background: #fff; border: 1px solid #DDD7CC; border-radius: 22px;
    padding: 24px; cursor: pointer;
    box-shadow: 0 2px 10px rgba(16,42,67,.05);
    transition: transform .2s, box-shadow .2s;
    text-decoration: none; display: block; color: inherit;
}
.area-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(16,42,67,.11); }
.area-card-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(18,59,99,.07); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.area-card h3 { margin-top: 16px; font-size: 21px; color: #102A43; line-height: 1.25; }
.area-card p  { margin-top: 10px; font-size: 15px; color: #6B7280; line-height: 1.78; }
.area-card .more { margin-top: 18px; font-size: 14px; font-weight: 500; color: #123B63; }

/* FAQ */
.faq-item { background: #F7F3ED; border-radius: 16px; overflow: hidden; }
.faq-btn {
    width: 100%; background: none; border: none; cursor: pointer;
    padding: 16px 18px; text-align: left; font-size: 15px; font-weight: 600;
    color: #102A43; display: flex; justify-content: space-between; align-items: center;
    font-family: 'DM Sans', system-ui, sans-serif;
}
.faq-answer { padding: 0 18px 16px; font-size: 15px; color: #5B6676; line-height: 1.78; display: none; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-chevron { transition: transform .2s; }

/* Form */
.form-input {
    height: 48px; border-radius: 14px; border: 1px solid #DDD7CC;
    background: #F7F3ED; padding: 0 16px; font-size: 14px; outline: none;
    width: 100%; font-family: 'DM Sans', system-ui, sans-serif;
    transition: border-color .15s;
}
.form-input:focus { border-color: #123B63; background: #fff; }
.form-textarea { height: 140px; resize: none; padding: 14px 16px; line-height: 1.7; }

/* Aviso OAB */
.aviso-oab {
    background: #F7F3ED; border-radius: 16px; padding: 14px 20px;
    border: 1px solid #E4DDD3; font-size: 14px; color: #6B7280; line-height: 1.7;
    margin-top: 20px;
}

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
.site-header {
    position: sticky; top: 0; z-index: 200;
    background: rgba(245,242,236,.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #D9D1C5;
}
.site-header .container {
    display: flex; align-items: center;
    justify-content: space-between; height: 68px;
}
.site-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.site-logo-icon {
    width: 44px; height: 44px; border-radius: 14px;
    border: 1px solid #D9D1C5; background: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(16,42,67,.07); flex-shrink: 0;
}
.site-logo-icon svg { width: 20px; height: 20px; }
.site-logo-text { text-align: left; }
.site-logo-name { font-size: 15px; font-weight: 600; color: #102A43; letter-spacing: -0.01em; line-height: 1.2; font-family: 'DM Sans', system-ui, sans-serif; }
.site-logo-sub  { font-size: 10px; font-weight: 500; color: #6B7280; letter-spacing: .22em; text-transform: uppercase; margin-top: 2px; }

.site-nav { display: flex; gap: 30px; align-items: center; }
.site-nav a { font-size: 15px; color: #4B5563; text-decoration: none; transition: color .15s; font-weight: 400; }
.site-nav a:hover, .site-nav a.current-menu-item { color: #123B63; font-weight: 600; }

.header-actions { display: flex; gap: 10px; }

.mobile-menu-btn {
    display: none; background: #fff; border: 1px solid #D9D1C5;
    border-radius: 12px; width: 42px; height: 42px;
    align-items: center; justify-content: center;
    cursor: pointer; font-size: 18px;
}
.mobile-nav {
    display: none; background: #fff; border-top: 1px solid #DDD7CC;
    padding: 16px 24px 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav a, .mobile-nav button {
    display: block; width: 100%; text-align: left;
    padding: 10px 0; font-size: 15px; color: #4B5563;
    border: none; background: none; cursor: pointer;
    border-bottom: 1px solid #F0EDE7;
    font-family: 'DM Sans', system-ui, sans-serif;
    text-decoration: none;
}
.mobile-nav a:last-child, .mobile-nav button:last-child { border-bottom: none; }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
    background: linear-gradient(160deg, #F5F2EC 55%, #EAE4DC);
    border-bottom: 1px solid #E4DDD3;
    position: relative; overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 10% 60%, rgba(18,59,99,.07), transparent 42%),
                radial-gradient(ellipse at 88% 15%, rgba(138,111,77,.08), transparent 38%);
    pointer-events: none;
}
.hero .container { position: relative; padding-top: 76px; padding-bottom: 68px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 16px;
    background: #fff; border: 1px solid #D8D2C8; border-radius: 50px;
    padding: 7px 20px; font-size: 11px; color: #6B7280;
    letter-spacing: .14em; text-transform: uppercase;
    box-shadow: 0 1px 6px rgba(16,42,67,.06); margin-bottom: 28px;
}
.hero-badge span + span::before { content: ''; display: inline-block; width: 1px; height: 12px; background: #D8D2C8; margin-right: 16px; }
.hero h1 { font-size: clamp(28px, 4vw, 52px); color: #102A43; line-height: 1.14; letter-spacing: -0.03em; max-width: 560px; }
.hero-sub { margin-top: 22px; font-size: 17px; line-height: 1.85; color: #5B6676; max-width: 500px; }
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { border-radius: 28px; overflow: hidden; box-shadow: 0 24px 64px rgba(16,42,67,.16); }
.hero-visual img { width: 100%; height: 420px; object-fit: cover; }
.photo-placeholder {
    width: 100%; background: linear-gradient(145deg, #C4BDB5, #D0C9C0);
    border-radius: 24px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; position: relative;
}
.photo-placeholder-label {
    background: rgba(255,255,255,.6); backdrop-filter: blur(6px);
    border-radius: 8px; padding: 5px 13px; font-size: 11px;
    color: #6B6560; font-weight: 500; letter-spacing: .05em;
    margin-top: 12px; z-index: 1;
}

/* ════════════════════════════════════════
   SECTION HEADERS
════════════════════════════════════════ */
.sh { max-width: 700px; }
.sh.center { max-width: 660px; margin: 0 auto; text-align: center; }
.sh .tag { display: block; margin-bottom: 10px; }
.sh h2 { font-size: clamp(24px, 3vw, 36px); color: #102A43; line-height: 1.22; }
.sh p   { margin-top: 14px; font-size: 16px; color: #5B6676; line-height: 1.85; }
.sh.light h2 { color: #fff; }
.sh.light p  { color: rgba(255,255,255,.75); }

/* ════════════════════════════════════════
   SOBRE CAROUSEL (valores)
════════════════════════════════════════ */
.sobre-carousel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.sobre-carousel-item .valor-card {
    background: rgba(255,255,255,.09); border-radius: 18px;
    padding: 22px 20px; height: 100%;
    border: 1px solid rgba(255,255,255,0);
    transition: background .25s ease, border-color .25s ease;
}
.sobre-carousel-item .valor-card:hover {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.18);
}
.valor-card h4 { font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 10px; font-family: 'Cormorant Garamond', Georgia, serif; letter-spacing: -0.01em; }
.valor-card p  { font-size: 14.5px; color: rgba(255,255,255,.75); line-height: 1.72; }

/* ════════════════════════════════════════
   BLOG CARROSSEL MOBILE
════════════════════════════════════════ */
.blog-carousel-mobile { display: none; }
.blog-grid-desktop    { display: block; }

/* ════════════════════════════════════════
   FLOATING BUTTON
════════════════════════════════════════ */
.floating-btn {
    position: fixed; bottom: 24px; right: 24px; z-index: 300;
    display: flex; align-items: center; gap: 10px;
    background: #25D366; color: #fff;
    padding: 14px 22px; border-radius: 50px;
    font-size: 13px; font-weight: 600;
    box-shadow: 0 8px 30px rgba(37,211,102,.4);
    transition: transform .15s, box-shadow .15s, background .15s;
    text-decoration: none;
    font-family: 'DM Sans', system-ui, sans-serif;
}
.floating-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(37,211,102,.5); background: #20ba5a; color: #fff; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer { background: #0F2438; color: #fff; }
.site-footer .container { padding-top: 60px; padding-bottom: 40px; }
.footer-id-block {
    margin-top: 18px; background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12); border-radius: 14px;
    padding: 14px 18px; display: inline-block;
}
.footer-id-label { font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.footer-id-text  { font-size: 13px; color: rgba(255,255,255,.85); line-height: 1.8; }
.footer-desc { margin-top: 16px; font-size: 15px; line-height: 1.85; color: rgba(255,255,255,.7); max-width: 420px; }
.footer-contacts { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: rgba(255,255,255,.6); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 16px; align-content: start; padding-top: 8px; }
.footer-nav a { font-size: 14px; color: rgba(255,255,255,.6); text-decoration: none; min-width: 45%; padding: 4px 0; transition: color .15s; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; margin-top: 40px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12px; color: rgba(255,255,255,.4); }
.footer-aviso { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 860px; margin-bottom: 12px; }

/* ════════════════════════════════════════
   BLOG SINGLE POST
════════════════════════════════════════ */
.post-header { border-bottom: 1px solid #E4DDD3; padding-bottom: 32px; margin-bottom: 40px; }
.post-meta    { display: flex; gap: 16px; align-items: center; margin-bottom: 16px; flex-wrap: wrap; }
.post-meta .tag { font-size: 11px; }
.post-meta span { font-size: 13px; color: #9CA3AF; }
.post-content h2 { font-size: 24px; color: #102A43; margin: 32px 0 14px; }
.post-content h3 { font-size: 20px; color: #102A43; margin: 28px 0 12px; }
.post-content p  { font-size: 16px; color: #5B6676; line-height: 1.87; margin-bottom: 20px; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 20px; }
.post-content li { font-size: 15px; color: #5B6676; line-height: 1.78; margin-bottom: 8px; }
.post-content blockquote {
    border-left: 3px solid #8A6F4D; padding: 16px 20px;
    background: #F7F3ED; border-radius: 0 14px 14px 0;
    margin: 24px 0; font-style: italic; color: #5B6676;
}
.post-cta { background: #123B63; border-radius: 24px; padding: 38px; color: #fff; margin-top: 48px; }
.post-cta h3 { font-size: 20px; color: #fff; margin-bottom: 10px; }
.post-cta p  { font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.85; max-width: 560px; margin-bottom: 22px; }
.post-thumbnail { width: 100%; height: 380px; object-fit: cover; border-radius: 22px; margin-bottom: 40px; }

/* ════════════════════════════════════════
   PÁGINA DE SERVIÇO (areas)
════════════════════════════════════════ */
.service-hero { background: linear-gradient(160deg, #F5F2EC 55%, #EAE4DC); border-bottom: 1px solid #E4DDD3; padding: 64px 24px 56px; }
.service-badge { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.service-icon  { width: 44px; height: 44px; border-radius: 12px; background: rgba(18,59,99,.07); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.service-list  { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-list li { background: #F7F3ED; border-radius: 13px; padding: 13px 16px; font-size: 14px; color: #5B6676; line-height: 1.65; display: flex; gap: 10px; }
.service-list li::before { content: '→'; color: #8A6F4D; font-weight: 700; flex-shrink: 0; }

/* ════════════════════════════════════════
   PÁGINA DE CONTATO
════════════════════════════════════════ */
.contact-info-item { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: #5B6676; margin-bottom: 14px; }
.contact-info-item span:first-child { font-size: 16px; margin-top: 1px; }
.form-success { text-align: center; padding: 40px 0; }
.form-success .icon { font-size: 44px; margin-bottom: 16px; }

/* ════════════════════════════════════════
   RESPONSIVO MOBILE
════════════════════════════════════════ */
@media (max-width: 860px) {
    .hide-mobile { display: none !important; }
    .show-mobile { display: flex !important; }
    .mobile-menu-btn { display: flex; }

    .g-hero, .g-2, .g-2-loose, .g-aside-l, .g-aside-r,
    .g-blog, .g-contact, .g-footer {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .g-3  { grid-template-columns: 1fr !important; gap: 14px !important; }
    .g-4  { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
    .g-form { grid-template-columns: 1fr !important; }

    .section-pad    { padding: 40px 18px; }
    .section-pad-sm { padding: 28px 18px; }
    .hero .container { padding-top: 44px; padding-bottom: 40px; }
    .hero h1 { font-size: clamp(26px, 7vw, 38px); }

    .sobre-carousel {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 12px;
        scrollbar-width: none;
    }
    .sobre-carousel::-webkit-scrollbar { display: none; }
    .sobre-carousel::after { content: ''; flex: 0 0 4px; }
    .sobre-carousel-item { flex: 0 0 78vw; max-width: 300px; scroll-snap-align: start; }

    .blog-carousel-mobile {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px; padding-bottom: 14px; margin-top: 24px;
        scrollbar-width: none;
    }
    .blog-carousel-mobile::-webkit-scrollbar { display: none; }
    .blog-carousel-mobile::after { content: ''; flex: 0 0 4px; }
    .blog-carousel-card { flex: 0 0 80vw; max-width: 320px; scroll-snap-align: start; }
    .blog-grid-desktop { display: none; }

    .floating-btn { padding: 12px 16px; font-size: 12px; bottom: 16px; right: 16px; }
    .service-hero { padding: 40px 18px; }
}

@media (min-width: 861px) {
    .show-mobile { display: none !important; }
    .sobre-carousel-item { display: contents; }
}

/* ════════════════════════════════════════
   WORDPRESS ESPECÍFICO
════════════════════════════════════════ */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: #9CA3AF; margin-top: 8px; text-align: center; }
.aligncenter { display: block; margin: 0 auto 20px; }
.alignleft   { float: left; margin: 0 20px 20px 0; }
.alignright  { float: right; margin: 0 0 20px 20px; }
.wp-block-image { margin: 24px 0; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }
