:root {
    --cream: #fbf7f1;
    --paper: #fffdf9;
    --latte: #e9d8c4;
    --sand: #d7b98f;
    --gold: #b48a4a;
    --rose: #c97982;
    --rose-dark: #9b4e58;
    --ink: #2f241f;
    --muted: #7d6d63;
    --line: #eadfd2;
    --soft: #f5ece2;
    --shadow: 0 18px 45px rgba(69, 48, 35, 0.12);
    --radius: 18px;
    --serif: Georgia, 'Times New Roman', serif;
    --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.55;
}

.wrap {
    max-width: 1125px;
    margin: auto;
    padding: 0 28px;
}

.content-frame {
    width: min(1125px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border: 1px solid transparent;
    border-radius: 4px;
    background: var(--rose);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.btn.light {
    border-color: #fff;
    background: #fff;
    color: var(--rose-dark);
}

button,
input,
textarea {
    font: inherit;
}

input,
textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
    color: var(--ink);
}

input:focus,
textarea:focus {
    border-color: var(--rose);
    outline: 3px solid rgba(201, 121, 130, 0.16);
}

textarea {
    resize: vertical;
}

.form-message {
    margin: 0 0 20px;
    padding: 14px 16px;
    border: 1px solid #a9d1ae;
    border-radius: 8px;
    background: #eff8f0;
    color: #315d37;
}

.form-message.error {
    border-color: #e3aeb3;
    background: #fff0f1;
    color: #8b3640;
}

.fan-avatar {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border: 2px solid #fff;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(69, 48, 35, 0.14);
}

.fan-avatar.placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rose);
    color: #fff;
    font-family: var(--serif);
    font-size: 22px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px;
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 400;
}

.section-title::before {
    color: var(--gold);
    content: '✦';
    font-size: 18px;
}

.section-title::after {
    height: 1px;
    flex: 1;
    background: var(--sand);
    content: '';
    opacity: 0.8;
}

.label {
    color: var(--rose);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.read {
    color: var(--rose-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.eyebrow {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.breadcrumbs {
    display: flex;
    overflow: hidden;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 12px;
    white-space: nowrap;
}

.breadcrumbs a {
    color: var(--rose-dark);
    font-weight: 700;
}

.breadcrumbs [aria-current='page'] {
    overflow: hidden;
    text-overflow: ellipsis;
}

.empty,
.not-found {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
}

.empty {
    padding: 24px;
    border-style: dashed;
    border-color: var(--sand);
}

.not-found {
    max-width: 760px;
    margin: 70px auto;
    padding: 40px;
    text-align: center;
}

@media (max-width: 560px) {
    .wrap {
        padding: 0 18px;
    }

    .content-frame {
        width: calc(100% - 20px);
    }
}
