/* ============================================================
   CONCEPCIÓN CRISTOBALENA — ABOGADO
   main.css · Hoja de estilos compartida
   ============================================================ */

/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --cream:      #FAFAF8;
    --cream-alt:  #F2F0EC;
    --text:       #1C1C1C;
    --text-mid:   #4A4A4A;
    --text-light: #6A6A6A;
    --garnet:     #7A1A2E;
    --garnet-dk:  #5e1422;
    --dark:       #2A2A2A;
    --rule:       rgba(122, 26, 46, 0.35);
    --rule-soft:  rgba(28, 28, 28, 0.12);
    --max:        860px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
    background-color: var(--cream);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
}

a { color: inherit; }

/* ===== LAYOUT ===== */
.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== TYPOGRAPHIC UTILITIES ===== */
.section-label {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-variant: small-caps;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--garnet);
    margin-bottom: 0.9rem;
}

.section-title {
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    margin-bottom: 1rem;
}

.divider {
    width: 48px;
    height: 1px;
    background-color: var(--garnet);
    margin: 1.75rem 0 2.25rem;
}

.section-rule {
    border: none;
    border-top: 1px solid var(--rule);
    margin: 0;
}

.body-text {
    font-size: 1.04rem;
    line-height: 1.9;
    color: var(--text-mid);
    max-width: 800px;
}

.body-text + .body-text {
    margin-top: 1.25rem;
}

/* ===== BUTTON ===== */
.btn {
    display: inline-block;
    background-color: var(--garnet);
    color: #fff;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-variant: small-caps;
    font-size: 0.92rem;
    letter-spacing: 0.12em;
    padding: 0.8rem 2.2rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn:hover { background-color: var(--garnet-dk); }

/* ===== HEADER ===== */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background-color: var(--cream);
    border-bottom: 1px solid var(--rule);
    padding: 1.2rem 2rem;
    transition: padding 0.3s ease;
}

#header.scrolled { padding: 0.6rem 2rem; }

.header-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-brand {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-variant: small-caps;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    text-decoration: none;
    color: var(--text);
    white-space: nowrap;
}

.header-brand em {
    font-style: normal;
    color: var(--text-light);
    font-weight: 300;
}

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

nav.main-nav a {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-variant: small-caps;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

nav.main-nav a:hover,
nav.main-nav a[aria-current="page"] { color: var(--garnet); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1px;
    background-color: var(--text);
    transition: background-color 0.2s;
}

.hamburger:hover span { background-color: var(--garnet); }

/* Mobile overlay nav */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background-color: var(--cream);
    z-index: 300;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-variant: small-caps;
    font-size: 1.6rem;
    letter-spacing: 0.12em;
    color: var(--text);
    text-decoration: none;
}

.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] { color: var(--garnet); }

.mobile-close {
    position: absolute;
    top: 1.4rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text);
    line-height: 1;
    padding: 0;
}

/* ===== LANDING: HERO ===== */
#inicio {
    background-color: var(--cream);
    padding: 0;
    /* La altura la determina el contenido del texto + padding de .hs-text */
}

.hero-pretitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-variant: small-caps;
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    color: var(--garnet);
    margin-bottom: 1.6rem;
}

.hero h1 {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    max-width: 100%;
    margin-bottom: 1.4rem;
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 100%;
    margin-bottom: 2.25rem;
    line-height: 1.85;
}

.hero-meta {
    margin-top: 2.25rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    color: var(--text-light);
    line-height: 1.8;
}

.hero-meta a { color: var(--text-light); text-decoration: none; }
.hero-meta a:hover { color: var(--garnet); }

/* ===== LANDING: SECTIONS ===== */
#despacho  { background-color: var(--cream-alt); padding: 6rem 2rem; }
#areas     { background-color: var(--cream);     padding: 5.5rem 2rem; }
#trayectoria { background-color: var(--cream-alt); padding: 5.5rem 2rem; }
#contacto  { background-color: var(--cream);     padding: 5.5rem 2rem; }

/* ===== AREAS LIST (landing) ===== */
.areas-list { list-style: none; margin-top: 2rem; }

.areas-list li {
    padding: 2rem 0;
    border-top: 1px solid var(--rule-soft);
}

.areas-list li:last-child { border-bottom: 1px solid var(--rule-soft); }

.areas-list--full li { padding: 2.5rem 0; }

/* Enlace de texto granate pequeño — "Ver detalle →", "Conocer el despacho →", etc. */
.text-link {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-variant: small-caps;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--garnet);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}
.text-link:hover { color: var(--garnet-dk); }

.area-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.18rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.5rem;
    display: inline-block;
    position: relative;
    text-decoration: none;
}

.area-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 1px;
    background-color: var(--garnet);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.areas-list li:hover .area-title::after { transform: scaleX(1); }

.area-desc {
    font-size: 0.96rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 680px;
}

/* ===== TIMELINE ===== */
.timeline { margin-top: 2.5rem; }

.tl-item {
    display: flex;
    gap: 3rem;
    padding: 2rem 0;
    border-top: 1px solid var(--rule-soft);
}

.tl-item:last-child { border-bottom: 1px solid var(--rule-soft); }

.tl-year {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-variant: small-caps;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--garnet);
    min-width: 90px;
    flex-shrink: 0;
    padding-top: 0.25rem;
}

.tl-body h3 { font-size: 1.05rem; font-weight: 500; margin-bottom: 0.4rem; }
.tl-body p  { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; }

/* ===== CONTACT (landing) ===== */
.contact-intro {
    font-style: italic;
    color: var(--text-mid);
    font-size: 1.04rem;
    margin-bottom: 3.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.ci-block { margin-bottom: 1.8rem; }

.ci-label {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-variant: small-caps;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--garnet);
    margin-bottom: 0.35rem;
}

.ci-block p,
.ci-block a {
    font-size: 0.97rem;
    color: var(--text);
    text-decoration: none;
    line-height: 1.65;
}

.ci-block a:hover { color: var(--garnet); }

.map-wrap {
    margin-top: 1.5rem;
    border: 1px solid var(--rule-soft);
    overflow: hidden;
}

.map-wrap iframe { display: block; width: 100%; height: 230px; border: none; }

/* ===== FORM ===== */
.form-group { margin-bottom: 1.4rem; }

.form-group label {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-variant: small-caps;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 0.4rem;
}

.form-group label .opt {
    font-variant: normal;
    font-size: 0.75rem;
    letter-spacing: 0;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid rgba(28,28,28,0.22);
    background-color: var(--cream);
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 0.95rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--garnet); }

.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.65; }

.form-error {
    font-size: 0.8rem;
    color: var(--garnet);
    margin-top: 0.3rem;
    min-height: 1.1rem;
}

.form-privacy {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1.2rem;
    line-height: 1.65;
}

.form-privacy a { color: var(--text-light); text-decoration: underline; text-underline-offset: 2px; }
.form-privacy a:hover { color: var(--garnet); }

.form-success {
    display: none;
    padding: 1.3rem 1.5rem;
    border-left: 2px solid var(--garnet);
    background-color: var(--cream-alt);
    font-size: 0.97rem;
    font-style: italic;
    color: var(--text-mid);
    margin-top: 1.5rem;
    line-height: 1.7;
}

/* ===== INTERIOR: PAGE HERO ===== */
.page-hero {
    background-color: var(--cream-alt);
    padding: 0;
}

.breadcrumb {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-variant: small-caps;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--text-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--garnet); }
.breadcrumb .sep { margin: 0 0.5rem; opacity: 0.4; }

.page-hero h1 {
    font-size: clamp(1.9rem, 2.8vw, 2.5rem);
    max-width: 100%;
    margin-bottom: 1rem;
}

.page-hero .lead {
    font-size: 1.04rem;
    color: var(--text-mid);
    max-width: 100%;
    line-height: 1.85;
}

/* ===== INTERIOR: CONTENT SECTIONS ===== */
.s-cream { background-color: var(--cream);     padding: 5rem 2rem; }
.s-alt   { background-color: var(--cream-alt); padding: 5rem 2rem; }

/* ===== INTERIOR: DETAIL LIST ===== */
.detail-list { list-style: none; margin-top: 2rem; }

.detail-list li {
    padding: 1.9rem 0;
    border-top: 1px solid var(--rule-soft);
}

.detail-list li:last-child { border-bottom: 1px solid var(--rule-soft); }

.detail-list h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.45rem;
}

.detail-list p { font-size: 0.96rem; color: var(--text-light); line-height: 1.8; }

/* ===== INTERIOR: PULL QUOTE ===== */
.pull-quote {
    border-left: 2px solid var(--garnet);
    padding: 0.75rem 1.75rem;
    margin: 2.75rem 0;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.85;
    max-width: 640px;
}

/* ===== INTERIOR: TWO-COLUMN PROSE ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background-color: var(--cream-alt);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-mid);
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.85;
    font-size: 1.02rem;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark);
    color: #a09890;
    padding: 3.5rem 2rem 2.5rem;
}

.footer-inner { max-width: var(--max); margin: 0 auto; }

.footer-brand {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-variant: small-caps;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: #d0cbc3;
    margin-bottom: 1.4rem;
}

.footer-info { font-size: 0.875rem; line-height: 2; margin-bottom: 2rem; }
.footer-info a { color: #a09890; text-decoration: none; }
.footer-info a:hover { color: #d0cbc3; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
}

.footer-links { display: flex; gap: 2rem; }

.footer-links a {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-variant: small-caps;
    font-size: 0.82rem;
    letter-spacing: 0.07em;
    color: #a09890;
    text-decoration: none;
}

.footer-links a:hover { color: #d0cbc3; }

/* ===== BACK TO TOP ===== */
#btt {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    width: 38px;
    height: 38px;
    background-color: var(--garnet);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: background-color 0.2s;
    line-height: 1;
}

#btt:hover { background-color: var(--garnet-dk); }
#btt.on { display: flex; }

/* ============================================================
   BLOG — ARTÍCULOS
   ============================================================ */

/* Grid de tarjetas en la página de listado */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2.5rem;
    margin-top: 3rem;
}

.article-card {
    display: flex;
    flex-direction: column;
    border-top: 2px solid var(--rule);
    padding-top: 1.75rem;
}

.article-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 1.25rem;
    display: block;
}

.article-card-cat {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-variant: small-caps;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    color: var(--garnet);
    margin-bottom: 0.5rem;
}

.article-card h2 {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.article-card h2 a {
    text-decoration: none;
    color: var(--text);
    transition: color 0.2s;
}

.article-card h2 a:hover { color: var(--garnet); }

.article-card p {
    font-size: 0.94rem;
    color: var(--text-mid);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.25rem;
}

.article-card-meta {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.88rem;
    color: var(--text-light);
    letter-spacing: 0.04em;
}

/* Contenido interior del artículo */
.article-meta-line {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--rule-soft);
}

.article-date, .article-read { color: var(--text-light); }

.article-body {
    max-width: 720px;
}

.article-body h2 {
    font-size: 1.35rem;
    font-weight: 500;
    margin: 2.75rem 0 0.9rem;
    color: var(--text);
}

.article-body h3 {
    font-size: 1.1rem;
    margin: 1.75rem 0 0.6rem;
}

.article-body p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 1.1rem;
}

.article-body ul, .article-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.article-body li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 0.4rem;
}

.article-body strong { color: var(--text); font-weight: 600; }

.article-body .pull-quote {
    border-left: 3px solid var(--garnet);
    margin: 2.5rem 0;
    padding: 1rem 1.5rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.08rem;
    color: var(--text);
    background: var(--cream-alt);
}

.article-cta-inline {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--rule-soft);
}

.article-cta-inline p {
    font-size: 1rem;
    color: var(--text-mid);
    margin-bottom: 1.25rem;
}

@media (max-width: 780px) {
    .articles-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .article-body h2 { font-size: 1.2rem; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 780px) {
    body { font-size: 16px; }

    nav.main-nav { display: none; }
    .hamburger { display: flex; }

    #despacho, #areas, #trayectoria, #contacto { padding: 4rem 1.5rem; }
    #despacho { padding: 4.5rem 1.5rem; }
    .s-cream, .s-alt { padding: 4rem 1.5rem; }
    .cta-section     { padding: 3.5rem 1.5rem; }

    .contact-grid  { grid-template-columns: 1fr; gap: 3rem; }
    .two-col       { grid-template-columns: 1fr; gap: 2rem; }

    .tl-item   { flex-direction: column; gap: 0.3rem; }
    .tl-year   { min-width: auto; }

    #header          { padding: 1rem 1.5rem; }
    #header.scrolled { padding: 0.6rem 1.5rem; }

    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .wrap       { padding: 0 1.25rem; }
    .hero h1    { font-size: 1.75rem; }
    .page-hero h1 { font-size: 1.65rem; }
}

/* ============================================================
   FOTOGRAFÍA — PATRÓN FULL-BLEED CON OVERLAY
   Hero y page-heroes con imagen de fondo + overlay oscuro,
   texto encima. Secciones de contenido puras sin foto lateral.
   ============================================================ */

/* ===== HERO PRINCIPAL (index.html) ===== */
#inicio {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: top center;
    padding: 0;
}

#inicio::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(12, 5, 2, 0.38);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--max);
    margin: 0 auto;
    padding: 9rem 2rem 5rem;
    width: 100%;
}

/* Texto del hero en blanco sobre overlay */
.hero-pretitle {
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-variant: small-caps;
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 500;
    color: #fff;
    max-width: 720px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 560px;
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.hero-meta {
    margin-top: 2.5rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.9;
}

.hero-meta a { color: rgba(255, 255, 255, 0.5); text-decoration: none; }
.hero-meta a:hover { color: rgba(255, 255, 255, 0.9); }

/* ===== PAGE HERO — PÁGINAS INTERIORES (full-bleed + overlay) ===== */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    padding: 0;
    /* sin background-color por defecto: lo pone el style="" inline */
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(12, 5, 2, 0.58);
    pointer-events: none;
}

.page-hero .wrap {
    position: relative;
    z-index: 1;
    padding-top: 7rem;
    padding-bottom: 3.5rem;
}

/* Breadcrumb y textos en blanco */
.page-hero .breadcrumb,
.page-hero .breadcrumb a        { color: rgba(255, 255, 255, 0.52); }
.page-hero .breadcrumb a:hover  { color: rgba(255, 255, 255, 0.9);  }
.page-hero .breadcrumb .sep     { opacity: 0.3; }
.page-hero h1                   { color: #fff; }
.page-hero .lead                { color: rgba(255, 255, 255, 0.8); max-width: 620px; }

/* ===== BANDA FOTOGRÁFICA (pausa visual entre secciones) ===== */
.image-break {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.image-break::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(12, 5, 2, 0.32);
    pointer-events: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 780px) {
    #inicio        { min-height: 80vh; }
    .hero-content  { padding: 7.5rem 1.5rem 4rem; }
    .hero-content h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }

    .page-hero     { min-height: 300px; }
    .page-hero .wrap { padding-top: 6rem; padding-bottom: 2.5rem; }

    .image-break   { height: 260px; }
}
