/* Hidden cost of returned deliveries */
.blog-article--returns-cost .rc-body {
    width: 100%;
    max-width: 100%;
    padding-bottom: 4rem;
}

.rc-highlight {
    position: relative;
    margin: 0 0 2.25rem;
    padding: 1.5rem 1.4rem 1.55rem 1.5rem;
    background: #111827;
    color: #f8fafc;
    border-radius: 0.85rem;
    overflow: hidden;
}

.rc-highlight::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #F2BA26;
}

.rc-highlight__label {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #F2BA26;
}

.rc-highlight p {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.75;
    color: #e5e7eb;
}

.rc-intro {
    display: grid;
    gap: 1.1rem;
    margin-bottom: 2.75rem;
}

.rc-intro p {
    margin: 0;
    font-size: 0.975rem;
    line-height: 1.8;
    color: #555555;
}

.rc-intro__stamp {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    padding: 0.7rem 1rem;
    background: #fff7ed;
    border: 1px solid rgba(194, 65, 12, 0.18);
    border-radius: 0.65rem;
    color: #9a3412 !important;
    font-size: 1rem !important;
}

.rc-intro__stamp strong {
    color: #7c2d12;
    font-weight: 700;
}

.rc-costs {
    display: grid;
    gap: 1.35rem;
    margin-bottom: 3rem;
}

.rc-cost {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem 1rem;
    align-items: start;
    padding: 1.35rem 1.25rem 1.45rem;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 0.9rem;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04);
}

.rc-cost__index {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(242, 186, 38, 0.16);
    color: #1a1a1a;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.rc-cost__panel h2 {
    margin: 0.15rem 0 0.75rem;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
}

.rc-cost__panel p {
    margin: 0 0 0.9rem;
    font-size: 0.95rem;
    line-height: 1.75;
    color: #555555;
}

.rc-cost__panel p:last-child {
    margin-bottom: 0;
}

.rc-route {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.55rem;
    margin: 0 0 1rem;
    padding: 0.85rem 1rem;
    background: #f8fafc;
    border: 1px dashed rgba(17, 24, 39, 0.14);
    border-radius: 0.7rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a1a;
}

.rc-route__arrow {
    color: #F2BA26;
    font-weight: 700;
}

.rc-close {
    margin-bottom: 2.5rem;
    padding: 1.75rem 1.4rem;
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 0.9rem;
}

.rc-close__head {
    margin-bottom: 1.15rem;
}

.rc-close__rule {
    display: block;
    width: 2.75rem;
    height: 3px;
    margin-bottom: 0.85rem;
    background: #F2BA26;
}

.rc-close h2 {
    margin: 0;
    font-size: clamp(1.2rem, 2.4vw, 1.45rem);
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
}

.rc-close p {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    line-height: 1.75;
    color: #555555;
}

.rc-close__lead {
    margin-bottom: 0.75rem !important;
    font-weight: 600;
    color: #1a1a1a !important;
}

.rc-actions {
    list-style: none;
    margin: 0 0 1.15rem;
    padding: 0;
    display: grid;
    gap: 0.55rem;
    counter-reset: rc-action;
}

.rc-actions li {
    position: relative;
    counter-increment: rc-action;
    padding: 0.75rem 0.9rem 0.75rem 3rem;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 0.7rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #333333;
}

.rc-actions li::before {
    content: counter(rc-action, lower-alpha);
    position: absolute;
    left: 0.7rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.7rem;
    height: 1.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #111827;
    color: #F2BA26;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: lowercase;
}

.rc-close__note {
    margin-bottom: 0 !important;
    padding-top: 0.25rem;
    font-weight: 600;
    color: #1a1a1a !important;
}

@media (min-width: 768px) {
    .rc-highlight {
        padding: 1.75rem 1.75rem 1.85rem 1.9rem;
    }

    .rc-cost {
        grid-template-columns: 3rem 1fr;
        gap: 1rem 1.25rem;
        padding: 1.55rem 1.5rem 1.65rem;
    }

    .rc-cost__index {
        width: 2.85rem;
        height: 2.85rem;
        font-size: 0.82rem;
    }

    .rc-close {
        padding: 2rem 1.85rem;
    }

    .rc-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }
}
