/* Restaurant start guide — hook intro + tip card deck */
.blog-article--restaurant-start .rst-body {
    width: 100%;
    max-width: 100%;
    padding-bottom: 4rem;
}

/* Intro */
.rst-intro {
    margin-bottom: 3rem;
}

.rst-intro__hook {
    font-size: clamp(1.25rem, 2.5vw, 1.3rem);
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 0 0 1.25rem;
}

.rst-intro__body {
    font-size: 1rem;
    line-height: 1.8;
    color: #555555;
    margin: 0;
    padding: 1.25rem 1.35rem;
    background: #fffdf5;
    border: 1px solid #f5e6b8;
}

/* Tip cards */
.rst-tips {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.rst-tip {
    padding: 0;
    border: 1px solid #ececec;
    background: #ffffff;
    overflow: hidden;
}

.rst-tip h2 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    padding: 0.85rem 1.25rem;
    background: #fafafa;
    border-bottom: 1px solid #ececec;
    text-transform: capitalize;
}

.rst-tip p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #555555;
    margin: 0;
    padding: 1.25rem 1.25rem 1.35rem;
}

.rst-tip--featured {
    border-color: #F2BA26;
}

.rst-tip--featured h2 {
    background: #F2BA26;
    color: #1a1a1a;
    border-bottom-color: #e5a820;
}

@media (min-width: 640px) {
    .rst-tips {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .rst-tip--featured {
        grid-column: 1 / -1;
    }
}

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

    .rst-tip--featured {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 14rem minmax(0, 1fr);
    }

    .rst-tip--featured h2 {
        display: flex;
        align-items: center;
        border-bottom: none;
        border-right: 1px solid #e5a820;
        padding: 1.5rem 1.25rem;
        min-height: 100%;
    }

    .rst-tip--featured p {
        padding: 1.5rem 1.75rem;
    }
}
