.shee-remote-content {
    --shee-text: #1f2937;
    --shee-muted: #6b7280;
    --shee-line: #d7dde5;
    margin: 0;
    padding: 32px 28px;
    background: #ffffff;
}

.shee-remote-content__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.shee-remote-content__title {
    margin: 0;
    color: var(--shee-text);
    font-size: clamp(2rem, 2.5vw, 3rem);
    line-height: 1.05;
    font-weight: 800;
}

.shee-remote-content__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 10px;
    background: #eef2f7;
    color: var(--shee-text);
    text-decoration: none;
    font-weight: 700;
}

.shee-remote-content__row {
    border-top: 1px solid var(--shee-line);
    padding-top: 22px;
}

.shee-remote-content__card {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.shee-remote-content__image-wrap {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
}

.shee-remote-content__image-stage {
    width: 100%;
    height: 100%;
}

.shee-remote-content__image {
    display: block;
    width: 100%;
    object-fit: cover;
}

.shee-remote-content__card--podcast .shee-remote-content__image {
    aspect-ratio: 1 / 1;
}

.shee-remote-content__image--empty {
    background: #eef2f7;
}

.shee-remote-content__card--journal .shee-remote-content__image-wrap {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--shee-accent), #fbf7ef);
}

.shee-remote-content__card--journal .shee-remote-content__image-stage {
    padding: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.shee-remote-content__card--journal .shee-remote-content__image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.shee-remote-content__card--journal .shee-remote-content__image--empty {
    width: 100%;
    height: 100%;
}

.shee-remote-content__body {
    padding-top: 10px;
}

.shee-remote-content__lang {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    margin-bottom: 8px;
    padding: 4px 8px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--shee-accent) 45%, white);
    color: var(--shee-text);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.shee-remote-content__card-title {
    color: var(--shee-text);
    font-size: 1rem;
    line-height: 1.45;
    font-weight: 700;
}

.shee-remote-content__meta {
    margin-top: 6px;
    color: var(--shee-muted);
    font-size: 0.92rem;
}

.shee-remote-content__error {
    padding: 14px 16px;
    border-radius: 12px;
    background: #fff4f4;
    color: #991b1b;
}

@media (max-width: 640px) {
    .shee-remote-content {
        padding: 24px 18px;
    }

    .shee-remote-content__header {
        flex-direction: column;
        align-items: flex-start;
    }
}
