/*
Theme Name: ABclic Informatique SA
Theme URI: https://abclic.ch
Author: ABclic Informatique SA
Author URI: https://abclic.ch
Description: Thème personnalisé pour ABclic Informatique SA - Agence informatique en Valais
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: abclic
Tags: business, it, informatique, valais
*/

/* ========================================
   VARIABLES CSS
======================================== */
:root {
    --green: #7DB828;
    --green-dark: #5a8a1a;
    --green-light: #94d62f;
    --black: #1a1a1a;
    --dark: #222222;
    --grey: #555555;
    --grey-light: #f5f5f5;
    --white: #ffffff;
    --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
    --transition: 0.3s ease;
    --radius: 6px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    background: var(--white);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--green);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover {
    color: var(--green-dark);
}

ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ========================================
   BOUTONS
======================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(125,184,40,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}
.btn-outline:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--green);
    border-color: var(--white);
}
.btn-white:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

/* ========================================
   HEADER / NAVIGATION
======================================== */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition);
}

#site-header.hero-mode {
    background: transparent;
}

#site-header.scrolled,
#site-header.solid {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-logo img {
    height: 44px;
    width: auto;
}

.logo-light { display: block; }
.logo-dark  { display: none; }

#site-header.scrolled .logo-light,
#site-header.solid .logo-light { display: none; }
#site-header.scrolled .logo-dark,
#site-header.solid .logo-dark  { display: block; }

.main-nav ul {
    display: flex;
    gap: 36px;
    align-items: center;
}

.main-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    position: relative;
    transition: color var(--transition);
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width var(--transition);
}
.main-nav a:hover::after,
.main-nav .current-menu-item > a::after { width: 100%; }

#site-header.scrolled .main-nav a,
#site-header.solid .main-nav a {
    color: var(--dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-support-btn {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.5);
    padding: 7px 16px;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.header-support-btn:hover {
    background: var(--white);
    color: var(--green);
    border-color: var(--white);
}

#site-header.scrolled .header-support-btn,
#site-header.solid .header-support-btn {
    color: var(--dark);
    border-color: var(--grey);
}
#site-header.scrolled .header-support-btn:hover,
#site-header.solid .header-support-btn:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.lang-switcher {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    opacity: 0.8;
    transition: opacity var(--transition);
}
.lang-switcher:hover { opacity: 1; color: var(--white); }

#site-header.scrolled .lang-switcher,
#site-header.solid .lang-switcher {
    color: var(--grey);
}

/* Mobile hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}
#site-header.scrolled .nav-toggle span,
#site-header.solid .nav-toggle span {
    background: var(--dark);
}

/* ========================================
   HERO (PAGE D'ACCUEIL)
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, #2d3a1e 60%, #1a2a0a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.hero-bg-accent {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(125,184,40,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-content .section-eyebrow {
    color: rgba(255,255,255,0.7);
    font-size: 11px;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 20px;
    margin-top: 10px;
}

.hero-content h1 span {
    color: var(--green);
}

.hero-content p {
    color: rgba(255,255,255,0.75);
    font-size: 18px;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color var(--transition);
}
.hero-scroll a:hover { color: var(--white); }

.scroll-arrow {
    width: 28px;
    height: 28px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ========================================
   PAGE HERO (PAGES INTERNES)
======================================== */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--dark) 0%, #2d3a1e 100%);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(125,184,40,0.12) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .section-eyebrow { color: rgba(255,255,255,0.6); }
.page-hero h1 { color: var(--white); margin: 10px 0 16px; }
.page-hero p  { color: rgba(255,255,255,0.7); max-width: 620px; font-size: 17px; }

/* ========================================
   SECTION: À PROPOS (HOME)
======================================== */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    margin: 12px 0 24px;
    color: var(--dark);
}

.about-content p {
    color: var(--grey);
    margin-bottom: 14px;
}

.about-content .btn { margin-top: 16px; }

.about-image {
    position: relative;
}
.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}
.about-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--green);
    color: var(--white);
    padding: 20px 28px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(125,184,40,0.35);
}
.about-badge .number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}
.about-badge .label {
    font-size: 12px;
    opacity: 0.9;
    margin-top: 4px;
}

/* ========================================
   SECTION: EXPERTISES (HOME)
======================================== */
.expertise-section {
    background: var(--grey-light);
}

.expertise-intro {
    max-width: 700px;
    margin-bottom: 56px;
}
.expertise-intro h2 { margin: 12px 0 16px; }
.expertise-intro p { color: var(--grey); }

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.expertise-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.expertise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(125,184,40,0.1);
    color: var(--green);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.expertise-card h3 { margin-bottom: 14px; color: var(--dark); }
.expertise-card p  { color: var(--grey); margin-bottom: 24px; }

/* ========================================
   SECTION: PARTENAIRES (HOME)
======================================== */
.partners-section {
    background: var(--dark);
    padding: 60px 0;
}

.partners-header {
    text-align: center;
    margin-bottom: 48px;
}
.partners-header .section-eyebrow { color: rgba(255,255,255,0.5); }
.partners-header h2 { color: var(--white); margin: 8px 0 12px; font-size: 1.8rem; }
.partners-header p  { color: rgba(255,255,255,0.6); max-width: 540px; margin: 0 auto; }

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px 48px;
}

.partner-item {
    opacity: 0.6;
    transition: opacity var(--transition);
    filter: brightness(0) invert(1);
}
.partner-item:hover { opacity: 1; }
.partner-item img { height: 36px; width: auto; object-fit: contain; }

/* ========================================
   SECTION: CTA CONTACT
======================================== */
.cta-section {
    background: var(--green);
    padding: 60px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-text .section-eyebrow { color: rgba(255,255,255,0.7); }
.cta-text h2 { color: var(--white); margin-top: 8px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ========================================
   SECTION: SUPPORT
======================================== */
.support-section {
    background: var(--grey-light);
    padding: 60px 0;
    text-align: center;
}
.support-section h2 { margin-bottom: 24px; }
.support-section .btn { margin: 0 auto; }

/* ========================================
   PAGE: SERVICES
======================================== */
.services-list {
    padding: 80px 0;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 40px;
    padding: 48px 0;
    border-bottom: 1px solid #ebebeb;
    align-items: start;
}
.service-item:last-child { border-bottom: none; }

.service-meta {
    padding-top: 4px;
}
.service-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
}

.service-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    width: fit-content;
}
.badge-prive {
    background: rgba(125,184,40,0.1);
    color: var(--green);
}
.badge-entreprise {
    background: rgba(34,34,34,0.08);
    color: var(--dark);
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--dark);
}
.service-content p { color: var(--grey); }

/* ========================================
   PAGE: AGENCE
======================================== */
.agency-intro {
    padding: 80px 0;
}
.agency-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.agency-intro-content h2 { margin-bottom: 24px; }
.agency-intro-content p  { color: var(--grey); }

.agency-intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Timeline histoire */
.timeline-section {
    background: var(--grey-light);
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 48px auto 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--green);
    opacity: 0.2;
}

.timeline-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-year {
    min-width: 80px;
    text-align: right;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    padding-top: 4px;
}

.timeline-dot {
    position: relative;
    margin-left: -5px;
    margin-top: 6px;
    flex-shrink: 0;
}
.timeline-dot::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(125,184,40,0.2);
}

.timeline-text {
    color: var(--grey);
    font-size: 15px;
    padding-top: 2px;
}

/* Équipe */
.team-section {
    padding: 80px 0;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.team-card {
    text-align: center;
    cursor: pointer;
}
.team-card-image {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}
.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
}
.team-card-image .img-back {
    opacity: 0;
}
.team-card:hover .img-front { opacity: 0; }
.team-card:hover .img-back  { opacity: 1; }

.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card .role {
    font-size: 13px;
    color: var(--green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Job */
.job-section {
    background: var(--dark);
    padding: 80px 0;
    text-align: center;
}
.job-section .section-eyebrow { color: rgba(255,255,255,0.5); }
.job-section h2 { color: var(--white); margin: 12px 0 40px; }

.job-avatars {
    display: flex;
    justify-content: center;
    gap: -16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 8px;
}
.job-avatars img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid var(--dark);
    object-fit: cover;
}

/* ========================================
   PAGE: CONTACT
======================================== */
.contact-page {
    padding: 80px 0;
}

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

.contact-info h2 { margin-bottom: 16px; }
.contact-info p  { color: var(--grey); margin-bottom: 32px; }

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: var(--dark);
}
.contact-detail-item .icon {
    width: 42px;
    height: 42px;
    background: rgba(125,184,40,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail-item .icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.contact-detail-item a { color: var(--dark); }
.contact-detail-item a:hover { color: var(--green); }

.contact-hours {
    background: var(--grey-light);
    padding: 24px;
    border-radius: 10px;
    border-left: 4px solid var(--green);
}
.contact-hours h4 { margin-bottom: 12px; font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--green); }
.contact-hours ul { display: flex; flex-direction: column; gap: 6px; }
.contact-hours li { font-size: 14px; color: var(--grey); }

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.contact-project {
    background: var(--dark);
    padding: 80px 0;
}
.contact-project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.contact-project-content .section-eyebrow { color: rgba(255,255,255,0.5); }
.contact-project-content h2 { color: var(--white); margin: 12px 0 20px; }
.contact-project-content p  { color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.contact-project-content .contact-detail-item { color: rgba(255,255,255,0.8); }
.contact-project-content .contact-detail-item a { color: rgba(255,255,255,0.8); }
.contact-project-content .contact-detail-item a:hover { color: var(--green); }
.contact-project-content .icon { background: rgba(255,255,255,0.08); }

.contact-project-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.contact-project-images img {
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
    height: 200px;
}
.contact-project-images img:first-child {
    grid-column: span 2;
    height: 220px;
}

/* ========================================
   FOOTER
======================================== */
#site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-brand .address-block {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-brand .address-block a {
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.footer-brand .address-block a:hover { color: var(--green); }

.footer-col h4 {
    color: var(--white);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--green); }

.footer-col .hours { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-col .hours .day { color: rgba(255,255,255,0.4); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col .hours .time { color: rgba(255,255,255,0.7); }

.footer-verbier-img {
    width: 100%;
    border-radius: 8px;
    opacity: 0.5;
    margin-bottom: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    margin: 0;
}

.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--green); }

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    transition: color var(--transition);
}
.footer-social a:hover { color: var(--green); }

.swiss-badge img { height: 36px; opacity: 0.6; transition: opacity var(--transition); }
.swiss-badge img:hover { opacity: 1; }

/* ========================================
   MENTIONS LÉGALES
======================================== */
.legal-page {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}
.legal-page h2 { margin: 40px 0 16px; font-size: 1.3rem; }
.legal-page p, .legal-page li { color: var(--grey); }
.legal-page ul { margin-left: 24px; list-style: disc; }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid, .expertise-grid, .team-grid { grid-template-columns: 1fr; gap: 40px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .agency-intro-grid, .contact-grid, .contact-project-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .main-nav { display: none; position: fixed; inset: 0; background: var(--dark); flex-direction: column; justify-content: center; align-items: center; }
    .main-nav.open { display: flex; }
    .main-nav ul { flex-direction: column; gap: 28px; text-align: center; }
    .main-nav a { font-size: 1.3rem; }
    .nav-toggle { display: flex; }
    .cta-inner { flex-direction: column; text-align: center; }
    .hero-actions { flex-direction: column; }
    .service-item { grid-template-columns: 1fr; gap: 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .expertise-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .contact-project-images img:first-child { grid-column: span 1; }
    h1 { font-size: 2rem; }
}
