/* ========================================
   Bags Up Music - Main Stylesheet
   Single-page layout with splash, news, artists, contact
   ======================================== */

/* --- Design Tokens --- */
:root {
    --cyan: #0DF2C9;
    --cyan-dark: #00BE9C;
    --black: #000000;
    --white: #FFFFFF;
    --dark: #1a1a1a;
    --gray-light: #e8e8e8;
    --gray: #d0d0d0;
    --gray-dark: #666;
    --font-heading: 'Source Sans Pro', 'Arial Black', sans-serif;
    --font-body: 'Merriweather', Georgia, serif;
    --max-width: 1280px;
    --header-height: 70px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
    color: var(--dark);
    background: var(--white);
}

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

a {
    color: var(--dark);
    text-decoration: none;
}

a:hover {
    color: var(--cyan);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* ========================================
   HEADER - Hidden until scroll, then sticky
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--white);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.site-header.visible,
body.no-splash .site-header {
    transform: translateY(0);
}

body.no-splash {
    padding-top: 110px; /* header + bar height */
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
}

/* Cyan bar below nav */
.header-bar {
    background: var(--cyan);
    padding: 0.4rem 2rem;
}

.header-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-bar-section {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--black);
}

/* Mini Player */
.mini-player {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mini-player-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mini-player-cover {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 2px;
    max-width: none;
    border: 1px solid var(--cyan-dark);
}

.mini-player-text {
    display: flex;
    flex-direction: column;
}

.mini-player-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--black);
    line-height: 1.2;
}

.mini-player-artist {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--dark);
    line-height: 1.2;
}

.mini-player-controls {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.mini-player-btn {
    background: none;
    border: none;
    color: var(--black);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.15rem;
    transition: color 0.2s;
}

.mini-player-btn:hover {
    color: var(--white);
}

.mini-player-btn-play {
    font-size: 1.15rem;
}

.logo,
.logo:hover,
.logo:active,
.logo:visited {
    text-decoration: none;
    border: none;
    outline: none;
    display: block;
    line-height: 0;
    color: transparent;
}

a.logo {
    border-bottom: none;
}

.header-inner .logo img.logo-img {
    height: 40px;
    width: auto;
    max-width: none;
    display: block;
}

.logo:hover {
    opacity: 0.85;
}

.main-nav .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav .nav-links a {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: var(--dark);
    text-decoration: none;
    padding: 0.25rem 0;
}

.main-nav .nav-links a.active {
    font-weight: 700;
    color: var(--dark);
    text-decoration: underline;
    text-decoration-color: var(--cyan);
    text-underline-offset: 4px;
}

.main-nav .nav-links a:hover {
    color: var(--dark);
    text-decoration: underline;
    text-decoration-color: var(--cyan);
    text-underline-offset: 4px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* ========================================
   SPLASH SECTION
   ======================================== */
.splash-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    position: relative;
}

.splash-card {
    position: relative;
    /* background: var(--cyan); */
    padding: 3rem 5rem;
    text-align: center;
    max-width: 700px;
    width: 90%;
}

/* Cyan shadow behind card */
.splash-card::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: -12px;
    bottom: -12px;
    background: var(--cyan-dark);
    z-index: -1;
}

.splash-logo {
    max-width: none;
    height: 80px;
    width: auto;
    margin: 0 auto 1.5rem;
}

.splash-tagline {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--black);
    line-height: 1.6;
}

.splash-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--black);
    font-size: 2rem;
    text-decoration: none;
    background: transparent;
    border: 2px solid var(--black);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.splash-scroll:hover {
    color: var(--cyan);
    border-color: var(--cyan);
}

/* ========================================
   SECTION COMMON
   ======================================== */
.section {
    min-height: 50vh;
}

.section-gray {
    background: var(--gray-light);
}

/* Cyan section title bar */
.section-bar {
    background: var(--cyan);
    padding: 0.75rem 2rem;
}

.section-bar-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    color: var(--black);
    max-width: var(--max-width);
    margin: 0 auto;
}

/* ========================================
   NEWS SECTION
   ======================================== */
#news.section {
    padding-top: 10vh;
    min-height: 100vh;
    /* background: linear-gradient(to right, var(--black) 50%, var(--white) 50%); */
}

.news-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem;
}

/* Left: Featured Post */
.news-featured {
    position: relative;
    top: -2rem;
    /* background: var(--black); */
    min-height: 500px;
}

.news-label {
    display: none;
}

.featured-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.featured-card:hover .featured-image,
.featured-card:hover .featured-title {
    background-color: var(--cyan);
}

.featured-card:hover .featured-title h3,
.featured-card:hover .featured-title p {
    color: var(--black);
}

.featured-image {
    width: 100%;
    background-color: var(--black);
    aspect-ratio: 3 / 2;
    overflow: hidden;
    padding: 1rem 2rem;
    transition: background-color 0.3s ease;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-image .placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333 0%, #555 100%);
}

.featured-title {
    padding: 1rem 1rem;
    background-color: var(--black);
    text-align: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.featured-title h3 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.featured-title p {
    /*color: rgba(190, 190, 190, 0.9);  ligt gray for readability */
    color: var(--white);
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Right: Sidebar Posts */
.news-sidebar {
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    background: var(--white);
    position: relative;
    top: -2rem;
    align-self: start;
}

.sidebar-post {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #eee;
}

.sidebar-post:last-child {
    border-bottom: none;
}

.sidebar-image {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    overflow: hidden;
}

.sidebar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-image .placeholder-image {
    width: 100%;
    height: 100%;
    background: var(--gray);
}

.sidebar-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sidebar-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.sidebar-content h3 a {
    color: var(--dark);
}

.sidebar-content h3 a:hover {
    color: var(--cyan);
}

.sidebar-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
    flex: 1;
}

.read-more {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--dark);
    text-decoration: underline;
    align-self: flex-end;
}

.read-more:hover {
    color: var(--cyan);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    padding: 1.25rem 2rem;
    margin-top: auto;
    font-family: var(--font-heading);
}

.page-numbers {
    display: flex;
    gap: 0.25rem;
}

.page-link {
    font-size: 0.9rem;
    color: var(--dark);
    padding: 0.2rem 0.5rem;
    border: 1px solid var(--cyan);
}

.page-link.current {
    font-weight: 700;
    background: var(--cyan);
    color: var(--black);
}

.page-link.disabled {
    color: var(--gray);
    border-color: var(--gray);
    pointer-events: none;
}

/* ========================================
   ARTISTS SECTION
   ======================================== */
#artists.section {
    min-height: 85vh;
    display: flex;
    align-items: center;
}

   .artists-section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    flex: 1;
}

.artist-card {
    display: block;
    text-decoration: none;
    color: var(--dark);
}

.artist-card:hover {
    color: var(--dark);
}

.artist-card-inner {
    position: relative;
}

.artist-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cyan shadow effect behind card */
.artist-card-inner::before {
    content: '';
    position: absolute;
    top: 8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: var(--cyan);
    z-index: -1;
}

.artist-placeholder-cyan {
    background: var(--cyan);
}

.artist-placeholder-gray {
    background: #d0d0d0;
}

/* Gray placeholder has gray shadow */
.artist-card:last-child .artist-card-inner::before {
    background: #ccc;
}

.artist-name {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.2s;
}

.artist-card:hover .artist-name {
    background: var(--cyan);
    color: var(--black);
}

.artists-arrow {
    display: none;
}

.artists-arrow:hover {
    color: var(--cyan-dark);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 1rem;
}

.contact-info-block strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--dark);
}

.contact-info-block a {
    color: var(--dark);
    font-size: 0.9rem;
}

.contact-info-block a:hover {
    color: var(--cyan);
}

.social-icons-dark {
    display: flex;
    gap: 0.75rem;
}

.social-icons-dark a {
    color: var(--dark);
    font-size: 1.1rem;
    transition: color 0.2s;
}

.social-icons-dark a:hover {
    color: var(--cyan);
}

.contact-form-wrap {
    max-width: 500px;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--dark);
    background: var(--white);
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--cyan);
}

.btn-submit {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--black);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-submit:hover {
    background: var(--cyan);
    border-color: var(--cyan);
    color: var(--black);
}

.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 1.5rem 2rem;
    text-align: center;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-copyright {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* ========================================
   SINGLE POST PAGE (post.php)
   ======================================== */

body.post-page-body {
    padding-top: 0;
}

/* Post-specific simple header (no cyan bar) */
.post-site-header {
    background: var(--cyan);
}

.post-site-header .header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
}

.post-site-header .nav-links a {
    font-weight: 400;
    font-size: 0.95rem;
}

.post-site-header .nav-links a:hover {
    color: var(--black);
    text-decoration: underline;
    text-decoration-color: var(--black);
    text-underline-offset: 4px;
}

/* Hero: cyan background extends partway behind the featured image */
.post-hero {
    position: relative;
    background: linear-gradient(to bottom, var(--cyan) 65%, var(--white) 65%);
    padding-bottom: 2rem;
}

.post-header {
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.post-header-inner {
    max-width: 800px;
    margin: 0 auto;
}

.post-date-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.post-date-line .line {
    flex: 1;
    max-width: 200px;
    height: 2px;
    background: var(--black);
    opacity: 0.3;
}

.post-date {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--dark);
}

.post-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3rem;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.post-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--dark);
    font-weight: 300;
}

.post-featured-image {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
}

.post-content {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 2.2;
    color: var(--dark);
    text-align: justify;
}

.post-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 2.5rem 0 1rem;
    color: var(--black);
    text-align: left;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul, .post-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content a {
    color: var(--dark);
    text-decoration: underline;
}

.post-content a:hover {
    color: var(--cyan);
}

.post-content .btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--black);
    cursor: pointer;
    transition: all 0.2s;
}

.post-content .btn:hover {
    background: var(--cyan);
    border-color: var(--cyan);
    color: var(--black);
}

.post-content .text-center {
    text-align: center;
}

.post-content hr.post-divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 2.5rem 0;
}

.post-content .album-cover {
    max-width: 250px;
    height: auto;
    margin: 0 auto 1rem;
}

.post-content .video-embed {
    text-align: center;
    margin: 2rem 0;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid #eee;
    font-family: var(--font-heading);
}

.post-nav-link {
    font-size: 0.9rem;
    color: var(--dark);
    padding: 0.4rem 1.2rem;
    border: 1px solid var(--cyan);
    text-decoration: none;
    transition: all 0.2s;
}

.post-nav-link:hover {
    background: var(--cyan);
    color: var(--black);
}

.post-nav-link.disabled {
    color: var(--gray);
    border-color: var(--gray);
    pointer-events: none;
}

/* Post-specific footer */
.post-footer {
    background: var(--dark);
    color: var(--white);
    padding: 2rem;
}

.post-footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.post-footer-block strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.post-footer-block a {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

.post-footer-block a:hover {
    color: var(--cyan);
}

.post-footer-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.25);
}

.post-footer-socials {
    display: flex;
    gap: 0.6rem;
}

.post-footer-socials a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.post-footer-socials a:hover {
    color: var(--cyan);
}

.post-footer-copyright {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* ========================================
   ARTIST BIO PAGE
   ======================================== */
.artist-page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 2rem;
    min-height: calc(100vh - 160px);
}

.artist-bio-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.artist-bio-photo {
    position: sticky;
    top: 100px;
}

.artist-bio-image {
    width: 100%;
    background: var(--black);
    padding: 1rem;
}

.artist-bio-image img {
    width: 100%;
    height: auto;
    display: block;
}

.artist-bio-name {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    padding: 0.75rem 1rem;
    text-align: center;
}

.artist-bio-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--dark);
    text-align: justify;
}

.artist-bio-text p {
    margin-bottom: 1.25rem;
}

.artist-bio-text strong {
    font-weight: 700;
}

.artist-bio-text em {
    font-style: italic;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .news-layout {
        grid-template-columns: 1fr;
    }

    .news-featured {
        min-height: 400px;
        left: 0;
        top: 0;
    }

    .news-sidebar {
        left: 0;
    }

    .news-label {
        font-size: 2rem;
        width: 2.5rem;
    }

    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .sidebar-image {
        width: 150px;
        height: 100px;
    }

    .contact-section-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-inner {
        padding: 0.75rem 1rem;
    }

    .post-footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .post-footer-divider {
        width: 60px;
        height: 1px;
    }

    .post-footer-socials {
        justify-content: center;
    }

    .artist-bio-layout {
        grid-template-columns: 1fr;
    }

    .artist-bio-photo {
        position: static;
        max-width: 300px;
        margin: 0 auto;
    }

    .artist-bio-text {
        text-align: left;
    }

    .post-title {
        font-size: 2rem;
    }

    .header-bar {
        padding: 0.4rem 1rem;
    }

    .header-inner .logo img.logo-img {
        height: 30px;
    }

    .mini-player-text {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 0.75rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 100;
    }

    .main-nav .nav-links.open {
        display: flex;
    }

    .splash-card {
        padding: 2rem 2.5rem;
    }

    .splash-logo {
        height: 50px;
    }

    .splash-tagline {
        font-size: 1rem;
    }

    .news-featured {
        min-height: 300px;
    }

    .news-label {
        font-size: 1.75rem;
        width: 2rem;
    }

    .post-title {
        font-size: 2rem;
    }

    .sidebar-post {
        flex-direction: column;
    }

    .sidebar-image {
        width: 100%;
        height: 180px;
    }

    .artists-section-inner {
        flex-direction: column;
    }

    .artists-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .artists-arrow {
        display: none;
    }

    .contact-section-inner {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .splash-card {
        padding: 1.5rem 1.5rem;
    }

    .splash-logo {
        height: 40px;
    }

    .post-header {
        padding: 2rem 1rem 1.5rem;
    }

    .post-title {
        font-size: 1.75rem;
    }

    .post-page {
        padding: 1.5rem 1rem;
    }
}
