/* ==========================================================================
   Blog page — Yvofit 2026
   (shared header / footer live in theme.css)
   ========================================================================== */

/* Hero --------------------------------------------------------------------- */
.container-about {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: clamp(28px, 5vw, 64px);
    height: auto;
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: clamp(48px, 7vw, 96px) var(--gutter) clamp(30px, 5vw, 60px);
    box-sizing: border-box;
    position: relative;
}
.container-about::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    z-index: -1;
    background:
        radial-gradient(120% 90% at 80% 6%, var(--amber-soft) 0%, transparent 46%),
        radial-gradient(100% 80% at 12% 100%, var(--green-100) 0%, transparent 50%),
        var(--cream);
}
.text-section h2 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--green-600);
    margin: 0 0 1rem;
}
.text-section h1 {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--ink);
    font-size: clamp(34px, 4.8vw, 58px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin: 0 0 1.2rem;
    max-width: none;
}
.text-section p {
    font-family: var(--font-sans);
    color: var(--body);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    max-width: 52ch;
}
.image-section { justify-content: center; align-items: center; }
.image-section img { width: 100%; height: auto; border-radius: var(--radius-lg); }

/* Statement ---------------------------------------------------------------- */
.text-header { max-width: 900px; margin: 0 auto; padding: clamp(48px, 7vw, 90px) var(--gutter); }
.text-header h2 {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--ink);
    font-size: clamp(26px, 3.4vw, 40px);
    line-height: 1.22;
    margin: 0;
    width: auto;
}

/* Blog cards --------------------------------------------------------------- */
.container_card {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gutter) clamp(40px, 6vw, 80px);
}
.row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr));
    gap: clamp(20px, 3vw, 32px);
}
.section_card { display: flex; flex-direction: column; }
.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.card-img-top {
    width: 100%;
    height: 210px;
    object-fit: cover;
}
.card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.2;
    color: var(--ink);
    margin: 0;
}
.card-text {
    font-family: var(--font-sans);
    font-size: .98rem;
    line-height: 1.65;
    color: var(--body);
    margin: 0;
}
.card-date {
    font-family: var(--font-sans);
    font-size: .85rem;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: auto;
    padding-top: .6rem;
}
.card-date::before { content: '\1F4C5'; font-size: 1rem; }

/* Responsive --------------------------------------------------------------- */
@media (max-width: 900px) {
    .container-about { grid-template-columns: 1fr; }
    .image-section { order: -1; }
}
