/* Retail clothing tips — lookbook mosaic grid */
.blog-article--retail-tips .rt-body {
    width: 100%;
    max-width: 100%;
    padding-bottom: 4rem;
}

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

.rt-motto {
    margin: 0 0 1.5rem;
    padding: 1.5rem 1.35rem;
    background: #1a1a1a;
    border: none;
}

.rt-motto p {
    font-size: clamp(1.0625rem, 2.2vw, 1.25rem);
    font-weight: 600;
    line-height: 1.55;
    color: #ffffff;
    margin: 0;
}

.rt-motto p::before {
    content: '\201C';
    color: #F2BA26;
    margin-right: 0.15rem;
}

.rt-intro__growth {
    font-size: 1rem;
    line-height: 1.8;
    color: #444444;
    margin: 0 0 1.5rem;
}

.rt-intro__context {
    display: grid;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid #ececec;
}

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


/* Lookbook tip grid */
.rt-lookbook {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.rt-tip {
    padding: 1.5rem 1.35rem;
    background: #ffffff;
    border: 1px solid #ececec;
    border-top: 3px solid #1a1a1a;
}

.rt-tip:nth-child(even) {
    border-top-color: #F2BA26;
}

.rt-tip h2 {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    font-weight: 700;
    line-height: 1.35;
    color: #1a1a1a;
    margin: 0 0 1rem;
}

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

.rt-tip p:last-child {
    margin-bottom: 0;
}

.rt-tip--wide {
    border-top-width: 4px;
    border-top-color: #1a1a1a;
    background: #fafafa;
}

.rt-tip--accent {
    border-top-color: #F2BA26;
    background: #fffdf5;
    border-color: #f5e6b8;
}

/* 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: 640px) {
    .rt-lookbook {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .rt-tip--wide,
    .rt-tip--accent {
        grid-column: 1 / -1;
    }
}

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

    .rt-lookbook {
        gap: 1.75rem;
    }

    .rt-tip {
        padding: 1.75rem 1.5rem;
    }
}
