/* ==========================================================================
   SAYFA STILLERI — Faz 5
   Kimlik, hesap, muzayede listesi, blog, satin alma, statik sayfalar.
   app.css'teki tasarim sistemini (degiskenler, tipografi) kullanir.
   ========================================================================== */

/* --------------------------------------------------------------------------
   ORTAK
   -------------------------------------------------------------------------- */

.page { padding: 3.5rem 0 5rem; }

.page-title {
    font-family: var(--display);
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 0.6rem;
}

.page-sub {
    color: var(--ink-60);
    font-size: 1.02rem;
    margin: 0 0 2.5rem;
    max-width: 58ch;
}

.band-title {
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 0 1.5rem;
}

.band { margin-bottom: 4rem; }
.band > .tag { display: inline-flex; margin-bottom: 1.25rem; }

.shell-tight { max-width: 760px; }

/* Kirinti yolu */
.crumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--ink-40);
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}
.crumbs a { color: var(--ink-60); }
.crumbs a:hover { color: var(--gold); }
.crumbs > *:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--rule);
}

/* Bos durum */
.empty {
    padding: 4rem 1.5rem;
    text-align: center;
    border: 1px solid var(--rule);
}
.empty p { color: var(--ink-40); margin: 0 0 1.5rem; }

/* Uyari serdi */
.note {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 1.1rem;
    border: 1px solid var(--rule);
    background: var(--paper);
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
}
.note i { color: var(--ink-40); }
.note-ok   { border-color: #BBF7D0; background: #F0FDF4; color: #15803D; }
.note-ok i { color: #16A34A; }
.note-warn { border-color: #FDE68A; background: #FFFBEB; color: #B45309; }
.note-warn i { color: #D97706; }

/* Rozet */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.22rem 0.55rem;
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    border: 1px solid var(--rule);
    background: var(--paper);
    color: var(--ink-60);
    white-space: nowrap;
}
.pill.go   { border-color: #BBF7D0; background: #F0FDF4; color: #15803D; }
.pill.live { border-color: #FECACA; background: #FEF2F2; color: #B91C1C; }
.pill.gold { border-color: #EADFC4; background: #FBF7EE; color: #92702B; }

/* Etiket cipsleri */
.chips {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid var(--rule);
    font-size: 0.82rem;
    color: var(--ink-60);
    transition: all 0.25s var(--ease);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.on {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}
.chip .num { font-size: 0.7rem; opacity: 0.6; }

/* Zengin metin */
.prose {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--ink-60);
}
.prose > * + * { margin-top: 1.25rem; }
.prose h2 {
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 2.5rem;
}
.prose h3 { font-size: 1.15rem; margin-top: 2rem; }
.prose img { width: 100%; margin: 2rem 0; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { padding-left: 1.5rem; }
.prose li + li { margin-top: 0.5rem; }
.prose blockquote {
    border-left: 2px solid var(--gold);
    padding-left: 1.25rem;
    font-family: var(--display);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--ink-60);
}

/* Gorsel yok */
.img-void {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    background: var(--paper);
    color: var(--rule);
    font-size: 1.5rem;
}

/* --------------------------------------------------------------------------
   FORM ALANLARI
   -------------------------------------------------------------------------- */

.fld { margin-bottom: 1.25rem; }

.fld label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 0.45rem;
}

.fld input[type="text"],
.fld input[type="email"],
.fld input[type="tel"],
.fld input[type="password"],
.fld input[type="number"],
.fld textarea,
.fld select {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--rule);
    background: #fff;
    color: var(--ink);
    font-family: var(--body);
    font-size: 0.92rem;
    transition: border-color 0.25s var(--ease);
}
.fld input:focus,
.fld textarea:focus,
.fld select:focus {
    outline: none;
    border-color: var(--gold);
}
.fld input:disabled {
    background: var(--paper);
    color: var(--ink-40);
    cursor: not-allowed;
}
.fld input.bad,
.fld textarea.bad { border-color: #DC2626; background: #FEF2F2; }

.fld textarea { resize: vertical; min-height: 90px; }

.fld .hint {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.76rem;
    color: var(--ink-40);
    line-height: 1.4;
}

.bad-msg {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.78rem;
    color: #DC2626;
}

.fld-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.check {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--ink-60);
    cursor: pointer;
    line-height: 1.5;
}
.check input { margin-top: 0.2rem; flex-shrink: 0; }
.check a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

fieldset {
    border: none;
    padding: 0;
    margin: 0 0 2rem;
}
fieldset legend {
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-40);
    padding: 0 0 1rem;
}

.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 1.05rem 1.75rem; font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   KIMLIK
   -------------------------------------------------------------------------- */

.auth {
    padding: 4rem 0 6rem;
    min-height: 70vh;
    display: grid;
    place-items: center;
}

.auth-card {
    border: 1px solid var(--rule);
    padding: 2.75rem;
    background: #fff;
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
}

.auth-card h1 {
    font-family: var(--display);
    font-size: 1.85rem;
    font-weight: 400;
    margin: 0.75rem 0 0.5rem;
}

.auth-sub {
    color: var(--ink-60);
    font-size: 0.9rem;
    margin: 0 0 2rem;
}

.auth-form { margin-bottom: 1.5rem; }

.auth-alt {
    text-align: center;
    font-size: 0.85rem;
    color: var(--ink-60);
    margin: 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--rule);
}
.auth-alt a { color: var(--gold); font-weight: 500; }

@media (max-width: 520px) {
    .auth-card { padding: 1.75rem 1.25rem; border: none; }
}

/* --------------------------------------------------------------------------
   MUZAYEDE LISTESI
   -------------------------------------------------------------------------- */

.auction-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.auction-card {
    border: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    transition: all 0.35s var(--ease);
}
.auction-card:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
}
.auction-card.is-live { border-color: var(--live); }

.auction-card-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--paper);
}
.auction-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.auction-card:hover .auction-card-img img { transform: scale(1.04); }

.auction-card-img .tag {
    position: absolute;
    top: 0.85rem; left: 0.85rem;
}

.auction-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }

.auction-card-body .code {
    font-size: 0.7rem;
    color: var(--ink-40);
    letter-spacing: 0.08em;
}

.auction-card-body h3 {
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 0.45rem 0 0.6rem;
}

.auction-card-body p {
    font-size: 0.85rem;
    color: var(--ink-60);
    line-height: 1.55;
    margin: 0 0 1.25rem;
    flex: 1;
}

.auction-card-foot {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--rule);
    font-size: 0.76rem;
    color: var(--ink-40);
}
.auction-card-foot i { margin-right: 0.3rem; }

/* Muzayede detay basligi */
.auction-head {
    padding: 3.5rem 0 2.5rem;
    border-bottom: 1px solid var(--rule);
}
.auction-head.is-live { background: linear-gradient(180deg, #FFF5F6 0%, #fff 100%); }

.auction-head h1 {
    font-family: var(--display);
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 400;
    line-height: 1.15;
    margin: 1rem 0 0.75rem;
}

.auction-sub {
    color: var(--ink-60);
    font-size: 1.02rem;
    max-width: 65ch;
    margin: 0 0 2rem;
}

.auction-facts {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 0;
}
.auction-facts dt {
    font-family: var(--mono);
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-40);
    margin-bottom: 0.35rem;
}
.auction-facts dd {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

/* Su an satista */
.now-selling {
    padding: 2.5rem 0;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
}
.now-selling > .shell > .tag { margin-bottom: 1.25rem; }

.now-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1.75rem;
    align-items: center;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--live);
}
.now-card img {
    width: 140px; height: 175px;
    object-fit: cover;
}
.now-card h2 {
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0.4rem 0 0.85rem;
}
.now-price {
    display: block;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

@media (max-width: 640px) {
    .now-card { grid-template-columns: 1fr; }
    .now-card img { width: 100%; height: 220px; }
}

/* --------------------------------------------------------------------------
   SANATCI
   -------------------------------------------------------------------------- */

.artist-head {
    padding: 3.5rem 0 2.5rem;
    border-bottom: 1px solid var(--rule);
}

.artist-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.artist-photo {
    width: 120px; height: 120px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}

.artist-card h1 {
    font-family: var(--display);
    font-size: 2.2rem;
    font-weight: 400;
    margin: 0.5rem 0 0.35rem;
}

.artist-meta {
    color: var(--ink-40);
    font-size: 0.85rem;
    margin: 0;
}

.artist-bio {
    max-width: 65ch;
    font-size: 0.95rem;
}

@media (max-width: 640px) {
    .artist-card { flex-direction: column; text-align: center; gap: 1.25rem; }
}

/* --------------------------------------------------------------------------
   BLOG
   -------------------------------------------------------------------------- */

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.post-grid-3 { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }

.post-card {
    border: 1px solid var(--rule);
    transition: all 0.35s var(--ease);
}
.post-card:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
}

.post-card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--paper);
}
.post-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.post-card:hover .post-card-img img { transform: scale(1.04); }

.post-card-body { padding: 1.25rem; }
.post-card-body .tag { margin-bottom: 0.75rem; }

.post-card-body h2,
.post-card-body h3 {
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.35;
    margin: 0 0 0.6rem;
}
.post-card-body h3 { font-size: 1rem; }

.post-card-body p {
    font-size: 0.85rem;
    color: var(--ink-60);
    line-height: 1.6;
    margin: 0 0 1rem;
}

.post-card-foot {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.72rem;
    color: var(--ink-40);
    padding-top: 0.85rem;
    border-top: 1px solid var(--rule);
}

/* Yazi detay */
.post { padding: 3.5rem 0 5rem; }

.post-head { margin-bottom: 2.5rem; }
.post-head .tag { display: inline-flex; margin-bottom: 1.25rem; }

.post-head h1 {
    font-family: var(--display);
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 1.25rem;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: var(--ink-40);
}

.post-hero {
    width: 100%;
    margin-bottom: 2.5rem;
}

/* Statik sayfa */
.page-hero {
    width: 100%;
    margin: 0 0 2.5rem;
}

/* --------------------------------------------------------------------------
   SATIN ALMA
   -------------------------------------------------------------------------- */

.checkout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 900px) {
    .checkout { grid-template-columns: 1fr; gap: 2rem; }
}

.checkout-form { max-width: 560px; }

.checkout-sum {
    border: 1px solid var(--rule);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
    background: var(--paper);
}
@media (max-width: 900px) {
    .checkout-sum { position: static; order: -1; }
}

.checkout-sum h2 {
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-40);
    font-weight: 500;
    margin: 0 0 1.25rem;
}

.sum-lot {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--rule);
}
.sum-lot img {
    width: 70px; height: 88px;
    object-fit: cover;
}
.sum-lot h3 {
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.35;
    margin: 0.25rem 0;
}
.sum-lot .mute { font-size: 0.78rem; }

.sum-lines {
    margin: 1.25rem 0;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--rule);
}
.sum-lines > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.45rem 0;
    font-size: 0.88rem;
}
.sum-lines dt { color: var(--ink-60); margin: 0; }
.sum-lines dd { margin: 0; }

.sum-total {
    padding-top: 0.85rem !important;
    margin-top: 0.5rem;
    border-top: 1px solid var(--rule);
    font-weight: 600;
}
.sum-total dd {
    color: var(--gold);
    font-size: 1.25rem !important;
}

.sum-promise {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sum-promise li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.5rem 0;
    font-size: 0.78rem;
    color: var(--ink-60);
    line-height: 1.45;
}
.sum-promise i {
    color: var(--gold);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* Tesekkurler */
.thanks {
    padding: 5rem 0 6rem;
    min-height: 60vh;
    display: grid;
    place-items: center;
}

.thanks-card {
    text-align: center;
    border: 1px solid var(--rule);
    padding: 3rem 2.5rem;
    background: #fff;
}

.thanks-mark {
    font-size: 3rem;
    color: #16A34A;
    margin-bottom: 1.5rem;
}

.thanks-card h1 {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 400;
    margin: 0 0 1rem;
}

.thanks-no {
    font-size: 0.92rem;
    color: var(--ink-60);
    margin: 0 0 1rem;
}
.thanks-no b { color: var(--ink); }

.thanks-card > p {
    color: var(--ink-60);
    font-size: 0.92rem;
    line-height: 1.65;
    max-width: 45ch;
    margin: 0 auto 2rem;
}

.thanks-items {
    text-align: left;
    border: 1px solid var(--rule);
    margin-bottom: 2rem;
}
.thanks-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1.1rem;
    border-bottom: 1px solid var(--rule);
    font-size: 0.9rem;
}
.thanks-item:last-child { border-bottom: none; }
.thanks-total {
    background: var(--paper);
    font-weight: 600;
}
.thanks-total .num { color: var(--gold); }

.thanks-acts {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 520px) {
    .thanks-card { padding: 2rem 1.25rem; border: none; }
}

/* --------------------------------------------------------------------------
   SAYFALAMA
   -------------------------------------------------------------------------- */

.pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 3.5rem;
    flex-wrap: wrap;
}

.pager-btn {
    min-width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    padding: 0 0.65rem;
    border: 1px solid var(--rule);
    font-size: 0.85rem;
    color: var(--ink-60);
    transition: all 0.25s var(--ease);
}
.pager-btn:hover:not(.off):not(.now) {
    border-color: var(--ink);
    color: var(--ink);
}
.pager-btn.now {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}
.pager-btn.off { opacity: 0.3; cursor: not-allowed; }

.pager-gap {
    padding: 0 0.35rem;
    color: var(--ink-40);
}

/* --------------------------------------------------------------------------
   LOT IZGARASI — varyantlar
   -------------------------------------------------------------------------- */

.lot-grid-3 { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }

.lot-grid-wrap { padding: 3.5rem 0 5rem; }

.lot-card.is-won .lot-card-img { position: relative; }

.tag-won {
    position: absolute;
    top: 0.85rem; left: 0.85rem;
    background: #16A34A;
    color: #fff;
    border-color: #16A34A;
}

/* ==========================================================================
   GOOGLE YORUMLARI — kurumsal guven bloğu
   ========================================================================== */

.gr-summary {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem 1.75rem;
    border: 1px solid var(--rule);
    background: var(--paper);
    margin-bottom: 2.5rem;
}

.gr-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
    font-size: 0.92rem;
    padding-right: 2rem;
    border-right: 1px solid var(--rule);
}
.gr-brand svg { flex-shrink: 0; }

.gr-score {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.gr-num {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1;
}

.gr-stars {
    color: #F5B301;   /* Google'in yildiz sarisi */
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.gr-count {
    font-size: 0.78rem;
    color: var(--ink-40);
}

.gr-verified {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: var(--ink-60);
}
.gr-verified i { color: #34A853; }   /* Google yesili */

.gr-cta { margin-left: auto; }

.btn-line {
    border: 1px solid var(--ink);
    background: transparent;
    color: var(--ink);
}
.btn-line:hover { background: var(--ink); color: #fff; }

.gr-foot {
    text-align: center;
    margin-top: 2rem;
}
.gr-foot a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--ink-60);
    border-bottom: 1px solid var(--rule);
    padding-bottom: 0.35rem;
    transition: all 0.25s var(--ease);
}
.gr-foot a:hover { color: var(--gold); border-color: var(--gold); }

.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

@media (max-width: 860px) {
    .gr-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    .gr-brand {
        border-right: none;
        padding-right: 0;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--rule);
        width: 100%;
    }
    .gr-cta { margin-left: 0; width: 100%; justify-content: center; }
}

/* ==========================================================================
   FOOTER HARITASI — footer'in hemen ustunde, tam genislik
   ========================================================================== */

.foot-map {
    line-height: 0;              /* iframe altindaki bosluğu kapatir */
    border-top: 1px solid var(--rule);
    position: relative;
}

.foot-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;

    /* Gri baslar, uzerine gelince renklenir — sayfanin sakin
       tonuna uyar, etkilesimde canlanir */
    filter: grayscale(1) contrast(1.05);
    transition: filter 0.6s var(--ease);
}
.foot-map:hover iframe { filter: grayscale(0); }

@media (max-width: 640px) {
    .foot-map iframe { height: 300px; }
}

/* ==========================================================================
   SANATCILAR — katalog kunye estetigi
   ========================================================================== */

.art-head {
    padding: 4.5rem 0 3rem;
    border-bottom: 1px solid var(--rule);
}

.art-lede {
    font-size: var(--step-1);
    color: var(--ink-60);
    max-width: 52ch;
    margin: 1.5rem 0 0;
    font-weight: 300;
    line-height: 1.6;
}

.art-body { padding: 4rem 0 6rem; }

.art-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 3.5rem 2rem;
}

.art-card { display: block; }

/* Portre — kare, muze etiketi gibi sakin */
.art-card-photo {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--paper);
    margin-bottom: 1.25rem;
}

.art-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 0.7s var(--ease), transform 0.9s var(--ease);
}
.art-card:hover .art-card-photo img {
    filter: grayscale(0);
    transform: scale(1.04);
}

/* Fotograf yoksa: bas harfler */
.art-card-initials {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: var(--display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--ink-15);
    letter-spacing: 0.05em;
}

/* Altin cizgi — hover'da soldan saga acilir */
.art-card-rule {
    position: absolute;
    left: 0; bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.6s var(--ease);
}
.art-card:hover .art-card-rule { width: 100%; }

.art-card-body h2 {
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 0.5rem;
    transition: color 0.3s var(--ease);
}
.art-card:hover .art-card-body h2 { color: var(--gold); }

.art-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.74rem;
    color: var(--ink-40);
    margin-bottom: 0.6rem;
}
.art-card-meta span:not(:last-child)::after {
    content: '·';
    margin-left: 0.75rem;
    color: var(--ink-15);
}

.art-card-count {
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
}
.art-card-count-off { color: var(--ink-40); }

@media (max-width: 560px) {
    .art-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.25rem;
    }
    .art-card-initials { font-size: 2rem; }
}



/* ==========================================================================
   ORTAK: KOYU BASLIK BANDI + UZERINE BINEN KART

   Onceki hali her seyi duz beyaz zemine koyuyordu — icerik "kagida
   cizilmis" gibi duruyordu, hiyerarsi yoktu. Cozum:

     1. Baslik KOYU zeminde  → agirlik, cerceve
     2. Icerik BEYAZ kartta  → one cikar, golgeli
     3. Kart baslığa BINER   → katman hissi (negatif margin)
     4. Sayfa zemini KIRLI BEYAZ → kart beyazi parlar

   Bu, ayni renk paletiyle derinlik yaratir.
   ========================================================================== */

.pg-hero,
.acc-hero {
    background: var(--ink);
    color: #fff;
    padding: 3.5rem 0 6.5rem;   /* alt bosluk fazla — kart uzerine binecek */
    position: relative;
    overflow: hidden;
}

/* Ince altin cizgi — ust kenarda, muze etiketi detayi */
.pg-hero::after,
.acc-hero::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(184,147,63,0.4) 30%,
        rgba(184,147,63,0.4) 70%,
        transparent);
}

.pg-hero h1,
.acc-hero h1 {
    color: #fff;
    margin: 1rem 0 0.85rem;
}

.pg-hero-sub,
.acc-hero-sub {
    color: rgba(255,255,255,0.62);
    font-size: 1.02rem;
    line-height: 1.65;
    max-width: 56ch;
    margin: 0;
    font-weight: 300;
}

/* Koyu zeminde kirinti yolu */
.crumbs-light { color: rgba(255,255,255,0.4); }
.crumbs-light a { color: rgba(255,255,255,0.65); }
.crumbs-light a:hover { color: var(--gold); }
.crumbs-light > *:not(:last-child)::after { color: rgba(255,255,255,0.25); }

/* Koyu zeminde etiket cizgisi */
.label-rule-light .label { color: var(--gold); }
.label-rule-light::after { background: rgba(255,255,255,0.15); }

/* Icerigi yukari cek — basligin uzerine binsin */
.pg-wrap,
.acc-wrap {
    background: var(--surface-sunken);
    padding: 0 0 5rem;
    margin-top: -4rem;          /* KATMAN: kart basligin uzerine biner */
    position: relative;
    z-index: 2;
}


/* ==========================================================================
   STATIK SAYFA
   ========================================================================== */

.pg-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 940px) {
    .pg-layout { grid-template-columns: 1fr; }
    .pg-side { order: 2; }
}

/* --- Ana kart --- */
.pg-card {
    background: var(--surface);
    border: 1px solid var(--ink-08);
    box-shadow: var(--shadow-md);
    padding: 3.5rem;
}
@media (max-width: 640px) {
    .pg-card { padding: 1.75rem 1.25rem; }
}

.pg-card-img {
    width: calc(100% + 7rem);
    margin: -3.5rem -3.5rem 3rem;
    max-height: 320px;
    object-fit: cover;
}
@media (max-width: 640px) {
    .pg-card-img {
        width: calc(100% + 2.5rem);
        margin: -1.75rem -1.25rem 2rem;
    }
}

.pg-prose {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--ink-60);
    max-width: 66ch;
}
.pg-prose > * + * { margin-top: 1.4rem; }

/* Giris paragrafi — davetkar, biraz buyuk */
.pg-prose > p:first-child {
    font-size: 1.18rem;
    line-height: 1.7;
    color: var(--ink);
    font-weight: 300;
    padding-bottom: 1.75rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--ink-08);
}

.pg-prose h2 {
    font-family: var(--display);
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--ink);
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
/* Basliklarin onunde kucuk altin isaret */
.pg-prose h2::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}

.pg-prose h3 {
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ink);
    margin-top: 2.25rem;
}

.pg-prose ul,
.pg-prose ol { padding-left: 1.35rem; margin-top: 1rem; }
.pg-prose li { margin-bottom: 0.7rem; }
.pg-prose li::marker { color: var(--gold); }

.pg-prose a {
    color: var(--ink);
    border-bottom: 1px solid var(--gold);
    transition: color 0.25s var(--ease);
}
.pg-prose a:hover { color: var(--gold); }

.pg-prose blockquote {
    border-left: 2px solid var(--gold);
    background: var(--gold-wash);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0 2rem 0;
    font-family: var(--display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--ink);
}

.pg-card-foot {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--ink-08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: var(--ink-40);
}
.pg-card-foot i { margin-right: 0.4rem; }

.pg-ask {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ink-60);
    font-weight: 500;
    transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.pg-ask:hover { gap: 0.8rem; color: var(--gold); }
.pg-ask i { margin-right: 0; }

/* --- Yan panel --- */
.pg-side {
    display: grid;
    gap: 1.25rem;
    position: sticky;
    top: 100px;
}
@media (max-width: 940px) {
    .pg-side { position: static; }
}

.pg-side-card {
    background: var(--surface);
    border: 1px solid var(--ink-08);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
}

.pg-side-title {
    display: block;
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-40);
    padding-bottom: 0.85rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--ink-08);
}

.pg-side-nav { display: flex; flex-direction: column; }

.pg-side-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.7rem 0;
    font-size: 0.86rem;
    color: var(--ink-60);
    border-bottom: 1px solid var(--ink-08);
    transition: all 0.25s var(--ease);
}
.pg-side-nav a:last-child { border-bottom: none; }
.pg-side-nav a:hover { color: var(--ink); padding-left: 0.4rem; }

.pg-side-nav a.on {
    color: var(--ink);
    font-weight: 500;
}
.pg-side-nav a.on i {
    color: var(--gold);
    font-size: 0.4rem;
}

/* Yardim kutusu — altin zemin, dikkat ceker */
.pg-help {
    background: var(--gold-wash);
    border-color: var(--gold-soft);
    text-align: center;
}
.pg-help > i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.85rem;
}
.pg-help strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}
.pg-help p {
    font-size: 0.82rem;
    color: var(--ink-60);
    margin: 0 0 1.25rem;
    line-height: 1.5;
}


/* ==========================================================================
   ILETISIM
   ========================================================================== */

/* Hizli kanallar — basligin uzerine binen kartlar */
.ct-quick {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.ct-quick-card {
    background: var(--surface);
    border: 1px solid var(--ink-08);
    box-shadow: var(--shadow-md);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.ct-quick-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.ct-quick-icon {
    width: 44px; height: 44px;
    display: grid;
    place-items: center;
    background: var(--gold-wash);
    color: var(--gold);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    transition: all 0.35s var(--ease);
}
.ct-quick-card:hover .ct-quick-icon {
    background: var(--gold);
    color: #fff;
}
.ct-quick-wa:hover .ct-quick-icon { background: #25D366; }

.ct-quick-label {
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-40);
    margin-bottom: 0.4rem;
}

.ct-quick-card strong {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.ct-quick-go {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--ink-08);
    font-size: 0.78rem;
    color: var(--ink-60);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.ct-quick-card:hover .ct-quick-go {
    gap: 0.75rem;
    color: var(--gold);
}

/* Form + yan panel */
.ct-layout {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 950px) {
    .ct-layout { grid-template-columns: 1fr; }
}

.ct-card {
    background: var(--surface);
    border: 1px solid var(--ink-08);
    box-shadow: var(--shadow-md);
    padding: 2.75rem;
}
@media (max-width: 640px) {
    .ct-card { padding: 1.75rem 1.25rem; }
}

.ct-card-head {
    padding-bottom: 1.75rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--ink-08);
}
.ct-card-head h2 { margin: 0 0 0.5rem; }
.ct-card-head p {
    color: var(--ink-60);
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.6;
}

.fld label .opt {
    color: var(--ink-40);
    font-weight: 400;
    font-size: 0.76rem;
}

.ct-kvkk {
    font-size: 0.76rem;
    color: var(--ink-40);
    margin: 1.25rem 0 0;
    line-height: 1.5;
}

.ct-aside {
    display: grid;
    gap: 1.25rem;
    position: sticky;
    top: 100px;
}
@media (max-width: 950px) {
    .ct-aside { position: static; }
}

.ct-panel {
    background: var(--surface);
    border: 1px solid var(--ink-08);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
}

/* Koyu panel — guven bloğu one ciksin */
.ct-panel-dark {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}
.ct-panel-dark .ct-panel-title {
    color: var(--gold);
    border-bottom-color: rgba(255,255,255,0.12);
}

.ct-panel-title {
    display: block;
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-40);
    padding-bottom: 0.85rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--ink-08);
}

.ct-row {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 0.85rem;
    align-items: start;
    padding: 0.6rem 0;
}
.ct-row i { color: var(--gold); font-size: 0.85rem; margin-top: 0.25rem; }
.ct-row p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--ink-60);
}

.ct-trust-item {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 0.85rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ct-trust-item:last-child { border-bottom: none; padding-bottom: 0; }

.ct-trust-item i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 0.2rem;
}
.ct-trust-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #fff;
}
.ct-trust-item p {
    margin: 0;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.ct-social { display: flex; gap: 0.5rem; }
.ct-social a {
    width: 40px; height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ink-15);
    color: var(--ink-60);
    transition: all 0.3s var(--ease);
}
.ct-social a:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}


/* ==========================================================================
   UYE PANELI — kartlı, katmanli
   ========================================================================== */

.acc {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 900px) {
    .acc { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* --- Yan menu: kart icinde --- */
.acc-nav {
    background: var(--surface);
    border: 1px solid var(--ink-08);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 100px;
}
@media (max-width: 900px) {
    .acc-nav {
        position: static;
        flex-direction: row;
        overflow-x: auto;
        padding: 0.35rem;
    }
}

.acc-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    font-size: 0.88rem;
    color: var(--ink-60);
    white-space: nowrap;
    transition: all 0.25s var(--ease);
}
.acc-nav a:hover {
    background: var(--surface-sunken);
    color: var(--ink);
}

/* Aktif: koyu zemin — net, guclu */
.acc-nav a.on {
    background: var(--ink);
    color: #fff;
    font-weight: 500;
}
.acc-nav a.on i { color: var(--gold); }

.acc-nav i {
    width: 16px;
    text-align: center;
    font-size: 0.9rem;
}

.acc-body { min-width: 0; }

/* --- Ozet kutulari: her biri ayri kart --- */
.acc-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.acc-stat {
    background: var(--surface);
    border: 1px solid var(--ink-08);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.acc-stat:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.acc-stat .num {
    display: block;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.acc-stat span:last-child {
    font-size: 0.74rem;
    color: var(--ink-40);
    letter-spacing: 0.02em;
}

/* Onde oldugun teklif — altin vurgu */
.acc-stat.is-good {
    background: var(--gold-wash);
    border-color: var(--gold-soft);
}
.acc-stat.is-good .num { color: var(--gold); }

/* --- Icerik karti: tablolar, listeler bunun icinde --- */
.acc-card {
    background: var(--surface);
    border: 1px solid var(--ink-08);
    box-shadow: var(--shadow-md);
    padding: 1.75rem;
}
@media (max-width: 640px) {
    .acc-card { padding: 1.25rem; }
}

.acc-title {
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 400;
    margin: 2rem 0 1.25rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--ink-08);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.acc-title:first-child { margin-top: 0; }
.acc-title::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}

/* --- Takipteki lotlar --- */
.acc-lots { display: grid; gap: 0.85rem; }

.acc-lot {
    display: grid;
    grid-template-columns: 68px 1fr auto;
    gap: 1.15rem;
    align-items: center;
    padding: 0.9rem;
    background: var(--surface);
    border: 1px solid var(--ink-08);
    border-left-width: 3px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
}
.acc-lot:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(2px);
}
.acc-lot.is-leading { border-left-color: #16A34A; }
.acc-lot.is-outbid  { border-left-color: var(--live); }

.acc-lot img {
    width: 68px; height: 68px;
    object-fit: cover;
}
.acc-lot h3 {
    font-family: var(--display);
    font-size: 0.98rem;
    font-weight: 400;
    margin: 0.25rem 0;
}
.acc-lot-price {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 500;
}

.acc-lot-state {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
    text-align: right;
    padding: 0.35rem 0.7rem;
}
.acc-lot.is-leading .acc-lot-state {
    color: #15803D;
    background: #F0FDF4;
}
.acc-lot.is-outbid .acc-lot-state {
    color: #B91C1C;
    background: var(--live-wash);
}

/* --- Tablo --- */
.acc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}
.acc-table th {
    text-align: left;
    padding: 0.75rem 0.9rem;
    background: var(--surface-sunken);
    border-bottom: 1px solid var(--ink-15);
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-40);
    font-weight: 500;
    white-space: nowrap;
}
.acc-table td {
    padding: 0.95rem 0.9rem;
    border-bottom: 1px solid var(--ink-08);
    vertical-align: middle;
}
.acc-table tbody tr { transition: background 0.2s var(--ease); }
.acc-table tbody tr:hover { background: var(--surface-sunken); }
.acc-table tbody tr:last-child td { border-bottom: none; }

.acc-table tr.is-void { opacity: 0.45; }
.acc-table tr.is-void td:not(:last-child) { text-decoration: line-through; }
.acc-table a:hover { color: var(--gold); }

@media (max-width: 640px) {
    .acc-table { font-size: 0.8rem; }
    .acc-table th, .acc-table td { padding: 0.65rem 0.5rem; }
}

.acc-form { max-width: 520px; }

/* --- Siparis karti --- */
.order-card {
    background: var(--surface);
    border: 1px solid var(--ink-08);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.25rem;
    transition: box-shadow 0.3s var(--ease);
}
.order-card:hover { box-shadow: var(--shadow-md); }

.order-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.35rem;
    border-bottom: 1px solid var(--ink-08);
    background: var(--surface-sunken);
    flex-wrap: wrap;
}
.order-no { font-weight: 600; margin-right: 0.75rem; }
.order-state { display: flex; gap: 0.4rem; flex-wrap: wrap; }

.order-items { padding: 0.5rem 1.35rem; }
.order-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--ink-08);
}
.order-item:last-child { border-bottom: none; }

.order-foot {
    display: flex;
    justify-content: space-between;
    padding: 1.1rem 1.35rem;
    border-top: 1px solid var(--ink-08);
    font-weight: 600;
}
.order-foot .num { color: var(--gold); font-size: 1.1rem; }

/* Bos durum — kart icinde */
.acc-body .empty {
    background: var(--surface);
    border: 1px solid var(--ink-08);
    box-shadow: var(--shadow-sm);
}


/* ==========================================================================
   SANATCI DETAY
   ========================================================================== */

.ar-hero { padding-bottom: 7rem; }

.ar-hero-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-top: 2rem;
}
@media (max-width: 700px) {
    .ar-hero-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

.ar-portrait {
    width: 180px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
}
.ar-portrait img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.05);
}

.ar-portrait-initials {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: var(--display);
    font-size: 3rem;
    font-weight: 300;
    color: rgba(255,255,255,0.2);
}

.ar-ident h1 { margin: 1rem 0 1.25rem; }

.ar-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}
.ar-facts i { color: var(--gold); margin-right: 0.4rem; }
.ar-facts span:not(:last-child)::after {
    content: '';
    margin-left: 1.5rem;
    border-left: 1px solid rgba(255,255,255,0.15);
}

/* Biyografi karti */
.ar-bio {
    background: var(--surface);
    border: 1px solid var(--ink-08);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    margin-bottom: 3rem;
}
@media (max-width: 640px) {
    .ar-bio { padding: 1.75rem 1.25rem; }
}

.ar-bio-title {
    display: block;
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-40);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--ink-08);
}

.ar-works .acc-title { margin-top: 0; }
