/* ============================================================
   GIF / FOUNDER QUOTE SECTION
   Self-contained styling for the "<!-- Gif Section -->" block.
   Everything is scoped under .gif-section so it will not affect
   the rest of the page and will override conflicting rules from
   homepage-new.css / baby.css when this file is loaded LAST.
   ============================================================ */

.gif-section .gif-grid-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
}

/* ---- Left: founder photo / gif ---- */
.gif-section .gif-placeholder {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    line-height: 0;            /* removes the inline-image gap */
}

.gif-section .gif-static-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* ---- Right: quote card ---- */
.gif-section .gif-content-card {
    background: #faf7f2;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.gif-section .card-text-layout {
    margin: 0;
    font-family: "Nunito Sans", sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #333333;
}

/* ---- Signature block ---- */
.gif-section .founder-signature {
    margin-top: 28px;
}

.gif-section .founder-name {
    margin: 0;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1a1a1a;
}

.gif-section .founder-role {
    margin: 4px 0 0;
    font-family: "Nunito Sans", sans-serif;
    font-size: 0.95rem;
    color: #777777;
}

/* ============================================================
   RESPONSIVE — stack into a single column on tablet / mobile
   ============================================================ */
@media (max-width: 900px) {
    .gif-section .gif-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .gif-section .gif-content-card {
        padding: 28px;
    }

    .gif-section .card-text-layout {
        font-size: 1rem;
    }
}
