/* Restaurant automation — bento grid + step panels */
.blog-article--automation .auto-body {
    width: 100%;
    max-width: 100%;
    padding-bottom: 4rem;
}

/* Intro */
.auto-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: start;
}

.auto-intro__lead {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #444444;
    margin: 0;
}

.auto-intro__drop {
    float: left;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 0.82;
    color: #1a1a1a;
    margin: 0.12rem 0.6rem 0 0;
}

.auto-intro__aside {
    padding: 1.35rem 1.25rem;
    background: #fafafa;
    border: 1px solid #ececec;
    border-top: 3px solid #F2BA26;
}

.auto-intro__aside p {
    font-size: 0.975rem;
    line-height: 1.75;
    color: #555555;
    margin: 0;
}

/* Section blocks */
.auto-block {
    margin-bottom: 3.5rem;
}

.auto-block__title {
    font-size: clamp(1.125rem, 2.2vw, 1.375rem);
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 0 0 .75rem;
    padding-bottom: 0.85rem;
}

/* Bento advantage grid */
.auto-bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.auto-bento__cell {
    padding: 1.5rem 1.35rem;
    border: 1px solid #ececec;
    background: #ffffff;
}

.auto-bento__cell--wide {
    background: #fafafa;
}

.auto-bento__cell--green {
    border-color: #c8e6c9;
    background: #f1f8f1;
}

.auto-bento__cell--inventory {
    border-color: #ffe0b2;
    background: #fff8f0;
}

.auto-bento__cell--marketing {
    border-color: #e1bee7;
    background: #faf5fc;
}

.auto-bento__tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a1a1a;
    background: #F2BA26;
    padding: 0.35rem 0.65rem;
    margin-bottom: 1rem;
}

.auto-bento__cell p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #555555;
    margin: 0 0 1rem;
}

.auto-bento__cell p:last-child {
    margin-bottom: 0;
}

/* Implementation steps */
.auto-block--implement {
    padding-top: 0.5rem;
}

.auto-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.auto-step {
    display: grid;
    grid-template-columns: 3.25rem minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
    padding: 1.5rem 1.35rem;
    background: #ffffff;
    border: 1px solid #ececec;
    border-left: 4px solid #1a1a1a;
}

.auto-step:nth-child(2) {
    border-left-color: #F2BA26;
}

.auto-step:nth-child(3) {
    border-left-color: #6b7280;
}

.auto-step__index {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
    background: #f3f4f6;
    flex-shrink: 0;
}

.auto-step__content h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.65rem;
}

.auto-step__content p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #555555;
    margin: 0;
}

/* Conclusion — matches owner article */
.owner-conclusion {
    margin: 2.5rem 0;
    padding-top: 2rem;
    border-top: 1px solid #ececec;
}

.owner-conclusion__head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.owner-conclusion__rule {
    flex-shrink: 0;
    width: 2.5rem;
    height: 3px;
    background: #F2BA26;
}

.owner-conclusion h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #444444;
    margin: 0;
    letter-spacing: -0.01em;
}

.owner-conclusion p {
    color: #555555;
    margin: 0;
    line-height: 1.75;
    font-size: 1.0625rem;
}

@media (min-width: 768px) {
    .auto-intro {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 2rem;
    }

    .auto-intro__aside {
        padding: 1.5rem 1.35rem;
    }

    .auto-bento {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .auto-bento__cell--wide {
        grid-column: 1 / -1;
    }

    .auto-steps {
        gap: 1.25rem;
    }

    .auto-step {
        grid-template-columns: 4rem minmax(0, 1fr);
        gap: 1.5rem;
        padding: 1.75rem 1.5rem;
    }

    .auto-step__index {
        width: 4rem;
        height: 4rem;
        font-size: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .auto-bento {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .auto-bento__cell--wide {
        grid-column: 1 / -1;
    }

    .auto-bento__cell--marketing {
        grid-column: span 1;
    }
}
