/* ============================================ */
/* Post Card: Image with bottom overlay         */
/* ============================================ */
.post-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.post-card {
    overflow: visible;
}

.post-card__image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.post-card__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 400ms ease;
}

.post-card:hover .post-card__image img {
    transform: scale(1.05);
}

.post-card__placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #0a0a2e, #1a1a3e);
}

/* Overlay inside image, bottom-pinned, no overflow clipping */
.post-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 0.6rem 0.4rem;
    background: rgba(5, 5, 15, 0.88);
    z-index: 2;
    overflow: visible;
}

.post-card__overlay .post-card__category {
    display: inline-block;
    width: fit-content;
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0a0a14;
    background-color: #d4a853;
    padding: 1px 6px;
    border-radius: 2px;
    margin-bottom: 0.2rem;
    line-height: 1.4;
}

.post-card__overlay .post-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 0.15rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-card__overlay .post-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.3rem;
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    overflow: hidden;
}

.post-card__overlay .badge--outline {
    border-color: rgba(212, 168, 83, 0.5);
    color: #d4a853;
    font-size: 0.45rem;
    padding: 0px 4px;
    line-height: 1.4;
}

/* Hide the old body section */
.post-card__body {
    display: none;
}

/* ============================================ */
/* Artist Card: Name Overlay — bottom only      */
/* ============================================ */
.artist-card {
    position: relative;
    overflow: hidden;
}

.artist-card__image {
    position: relative;
}

.artist-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.6rem;
    background: rgba(5, 5, 15, 0.8);
    text-align: center;
    z-index: 2;
}

.artist-card__name {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 2px;
}

.artist-card__group {
    font-size: 0.7rem;
}

/* ============================================ */
/* Mobile Navigation — FULL SCREEN              */
/* ============================================ */
.mobile-nav {
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: calc(100vh - 64px) !important;
    height: calc(100dvh - 64px) !important;
    background-color: #0a0a14 !important;
    z-index: 9999 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    display: none;
    box-sizing: border-box !important;
    max-height: none !important;
    min-height: 0 !important;
}

.mobile-nav--open {
    display: block !important;
}

.mobile-nav > div,
.mobile-nav > ul,
.mobile-nav .menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-height: none !important;
    overflow: visible !important;
}

.mobile-nav li,
.mobile-nav .menu-item {
    display: block !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

.mobile-nav a,
.mobile-nav .menu-item a {
    display: block !important;
    padding: 1.2rem 1.5rem !important;
    font-size: 1.2rem !important;
    font-family: 'Playfair Display', Georgia, serif !important;
    color: #f0f0f5 !important;
    border-bottom: 1px solid #2a2a4e !important;
    transition: color 150ms ease, background-color 150ms ease;
    text-decoration: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.mobile-nav a:hover,
.mobile-nav .menu-item a:hover {
    color: #d4a853 !important;
    background-color: rgba(212, 168, 83, 0.08) !important;
}

.mobile-nav .mobile-nav__link {
    display: contents !important;
}
