@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Google Sans', 'Noto Sans', Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.site-header {
    background-color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

.logo img {
    height: 45px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
}

.main-nav a:hover {
    opacity: 0.8;
}

/* Main Content */
main {
    flex: 1;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 80px 0;
}

.page-title {
    text-align: center;
    color: #5b2d8e;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.project-item {
    display: block;
    overflow: hidden;
    aspect-ratio: 1;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.project-item:hover img {
    transform: scale(1.03);
}

/* Prev / Next / Back to Top navigation */
.project-nav {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 25px 80px 30px;
}

.project-nav-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.project-nav-link:hover {
    color: #000;
}

.project-nav-top {
    color: #999;
    text-align: center;
}

.project-nav-top:hover {
    color: #666;
}

.project-nav-link:last-child {
    text-align: right;
}

/* Homepage back to top */
.back-to-top-wrapper {
    text-align: center;
    padding: 25px 0 30px;
}

.back-to-top {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.back-to-top:hover {
    color: #666;
}

@media (max-width: 600px) {
    .project-nav {
        padding: 20px 20px 25px;
    }
}

/* Large desktop - 3 column grid */
@media (min-width: 1200px) {
    main {
        max-width: 1200px;
    }

    .project-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* Footer */
.site-footer {
    background-color: #f0f0f0;
    min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-nav a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
}

.footer-nav a:hover {
    opacity: 0.7;
}

/* About Page */
.about-page {
    flex: 1;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 80px;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-photo {
    flex-shrink: 0;
    width: 280px;
}

.about-photo img {
    width: 100%;
    display: block;
}

.about-title {
    color: #000;
    margin-bottom: 30px;
}

.about-bio p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;
}

/* Contact Page */
.contact-title {
    color: #000;
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
    text-align: center;
}

.contact-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.contact-links a {
    display: inline-block;
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 25px;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.contact-links a:hover {
    background-color: #000;
    color: #fff;
}

.contact-page {
    flex: 1;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 80px 50px;
}

.contact-form {
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
    font-family: 'Google Sans', 'Noto Sans', Arial, sans-serif;
    border: 1px solid #ccc;
    border-radius: 3px;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5b2d8e;
}

.form-submit {
    background-color: #5b2d8e;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 3px;
}

.form-submit:hover {
    opacity: 0.9;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.social-links a {
    color: #5b2d8e;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.social-links a:hover {
    opacity: 0.7;
}

/* Project Pages */
.project-page {
    flex: 1;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 80px 60px;
}

.project-hero {
    margin-bottom: 30px;
}

.project-hero img {
    width: 100%;
    display: block;
}

.project-description {
    margin-bottom: 40px;
}

.project-description p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.back-link {
    display: inline-block;
    color: #5b2d8e;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.back-link:hover {
    opacity: 0.7;
}

/* Project Gallery */
.project-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.project-gallery img {
    width: 100%;
    display: block;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.project-gallery img:hover {
    opacity: 0.8;
}

/* Behind the Scenes */
.bts-section {
    margin-top: 20px;
    margin-bottom: 40px;
}

.bts-divider {
    border: none;
    border-top: 2px solid #ddd;
    margin-bottom: 20px;
}

.bts-heading {
    text-align: center;
    color: #888;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0 10px;
    box-sizing: border-box;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-overlay img {
    max-width: 80%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.75;
    padding: 5px 10px;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    opacity: 0.75;
    padding: 10px 15px;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
}

/* ======================== */
/* Yodeling Wiki Page       */
/* ======================== */

.yw-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.yw-wrap {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 70px;
    margin-bottom: 30px;
}

.yw-title {
    color: #000;
    margin-top: 50px;
    margin-bottom: 30px;
}

/* Top image grid: physicalwiki (large left) + 2 stacked right */
.yw-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
}

.yw-top-main {
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.yw-top-grid img:not(.yw-top-main) {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 100%;
}

/* Description text (full width) */
.yw-description p {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 12px;
}

/* Dark full-bleed image section */
.yw-dark-section {
    background-color: #000;
    padding: 50px 0;
}

.yw-dark-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 0;
}

/* Three-column image row — equal height, proportional widths, no crop */
.yw-three-col {
    display: grid;
    grid-template-columns: 420fr 420fr 997fr;
    gap: 4px;
}

.yw-three-col img {
    width: 100%;
    display: block;
}

/* Two-column image rows */
.yw-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.yw-two-col img {
    width: 100%;
    display: block;
}

/* Chest/songlyrics — proportional columns guarantee exact equal height */
.yw-equal-row {
    grid-template-columns: 931fr 949fr;
}

/* Full-width single image */
.yw-full {
    width: 100%;
    display: block;
}

/* Yodeling Wiki — mobile */
@media (max-width: 600px) {
    .yw-wrap {
        padding: 0 20px;
        margin-bottom: 20px;
    }

    .yw-top-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .yw-top-main {
        grid-row: auto;
        height: auto;
    }

    .yw-top-grid img:not(.yw-top-main) {
        height: auto;
    }

    .yw-two-col {
        grid-template-columns: 1fr;
    }
}

/* ======================== */
/* ISlide Page              */
/* ======================== */

.is-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.is-wrap {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
}

/* Logo */
.is-logo {
    text-align: center;
    padding-top: 50px;
    margin-bottom: 4px;
}

.is-logo img {
    max-width: 320px;
    width: 100%;
    display: inline-block;
}

/* Title */
.is-title {
    text-align: center;
    font-size: 28px;
    font-weight: 900;
    color: #000;
    letter-spacing: 0.5px;
    margin-bottom: 50px;
}

/* Real slides (below title) */
.is-realslides {
    margin-bottom: 50px;
}

.is-realslides img {
    width: 100%;
    display: block;
}

/* Hero */
.is-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 35px;
}

.is-hero-text p {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 12px;
}

.is-hero-img img {
    width: 100%;
    display: block;
}

/* Dark full-bleed icons section */
.is-dark-icons {
    background-color: #000;
    padding: 50px 0;
    margin-bottom: 50px;
}

/* Icons grid */
.is-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.is-icons-grid img {
    width: 100%;
    display: block;
}

/* Social post + type treatments */
.is-lower {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    row-gap: 15px;
    margin-bottom: 50px;
}

.is-social {
    grid-column: 1;
    grid-row: 1 / 3;
}

.is-social img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: top left;
}

.is-type {
    width: 100%;
    display: block;
}

/* Bottom images */
.is-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 25px;
}

.is-bottom img {
    width: 100%;
    display: block;
}

/* ISlide — tablet */
@media (max-width: 768px) {
    .is-lower {
        grid-template-columns: 1fr;
    }

    .is-social {
        grid-row: auto;
    }

    .is-type {
        grid-column: 1;
    }
}

/* ISlide — mobile */
@media (max-width: 600px) {
    .is-wrap {
        padding: 0 20px;
    }

    .is-logo {
        padding-top: 30px;
    }

    .is-hero {
        grid-template-columns: 1fr;
    }

    .is-dark-icons {
        padding: 30px 0;
    }

    .is-icons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

/* ======================== */
/* Corpse Bloom Page        */
/* ======================== */

.cb-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.cb-wrap {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 80px 0;
}

.cb-wrap-pt {
    padding-top: 50px;
    padding-bottom: 50px;
}

.cb-page-title {
    color: #000;
    line-height: 1.2;
    margin-bottom: 30px;
}

/* Hero */
.cb-hero {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 20px;
    margin-bottom: 25px;
    align-items: start;
}

.cb-hero img {
    width: 100%;
    display: block;
}

/* Description */
.cb-description {
    margin-bottom: 35px;
}

.cb-description p {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 12px;
}

/* Installation image */
.cb-fullbleed {
    width: 100%;
    line-height: 0;
    margin-top: 10px;
    margin-bottom: 0;
}

.cb-fullbleed img {
    width: 100%;
    display: block;
}

/* Three-image row — dark full-bleed */
.cb-dark-row {
    background-color: #000;
    padding: 50px 0;
    margin-top: 35px;
}

.cb-dark-row-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
}

.cb-dark-row img {
    width: 100%;
    display: block;
}

/* Listen Here heading */
.cb-listen-heading {
    text-align: center;
    font-size: 26px;
    font-weight: 900;
    color: #000;
    margin-bottom: 50px;
}

.cb-listen-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 3px solid #000;
    padding-bottom: 2px;
}

.cb-listen-link:hover {
    opacity: 0.6;
}

/* Listen section */
.cb-listen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
    align-items: start;
}

.cb-col-label {
    font-size: 13px;
    font-weight: 700;
    color: #555;
    margin-bottom: 10px;
}

.cb-media-link {
    display: block;
}

.cb-media-link:hover img {
    opacity: 0.8;
}

.cb-podcast img {
    width: 100%;
    display: block;
    transition: opacity 0.2s ease;
}

/* Tracks grid */
.cb-tracks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.cb-track img {
    width: 100%;
    display: block;
    margin-bottom: 4px;
    transition: opacity 0.2s ease;
}

.cb-track-embed {
    position: relative;
    aspect-ratio: 1;
    width: 100%;
}

.cb-track-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.cb-track-name {
    font-size: 12px;
    color: #444;
    line-height: 1.3;
}

/* Bandcamp link */
.cb-bandcamp-wrap {
    text-align: center;
    padding: 20px 0 50px;
}

.cb-bandcamp-link {
    font-size: inherit;
    font-weight: 900;
    color: #000;
    text-decoration: none;
    border-bottom: 3px solid #000;
    padding-bottom: 2px;
}

.cb-bandcamp-link:hover {
    opacity: 0.6;
}

/* Behind the Scenes */
.cb-bts {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 50px 40px 50px;
}

.cb-bts-heading {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 50px;
}

.cb-bts-credits {
    font-size: 13px;
    line-height: 1.7;
    color: #fff;
    white-space: nowrap;
    margin: 0 auto 8px;
}

.cb-instagram-btn {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 50px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 50px;
    border-radius: 25px;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.cb-instagram-btn:hover {
    background-color: #fff;
    color: #000;
}

/* ======================== */
/* Grocery Packaging Page   */
/* ======================== */

.gp-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.gp-wrap {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px 35px;
}

.gp-title {
    color: #000;
    margin-top: 30px;
    margin-bottom: 30px;
}

.gp-hero-img {
    margin-bottom: 25px;
}

.gp-hero-img img {
    width: 100%;
    display: block;
}

.gp-description p {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 12px;
}

.gp-dark-section {
    background-color: #000;
    padding: 50px 0;
}

.gp-dark-wrap {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gp-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.gp-two-col img {
    width: 100%;
    display: block;
}

.gp-four-col {
    display: grid;
    grid-template-columns: 1fr 0.64fr 1.59fr;
    gap: 6px;
}

.gp-four-col > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: bottom;
}

.gp-four-col .gp-stacked {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 6px;
    min-height: 0;
}

.gp-stacked img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* ======================== */
/* Electrical Box Page      */
/* ======================== */

.eb-main {
    flex: 1;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px 20px;
}

.eb-title {
    color: #000;
    margin-top: 30px;
    margin-bottom: 30px;
}

.eb-top {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 12px;
    align-items: stretch;
    margin-bottom: 12px;
}

.eb-left {
    display: flex;
    flex-direction: column;
}

.eb-left > img {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

.eb-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.eb-description p {
    font-family: 'Google Sans', 'Noto Sans', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 12px;
}

.eb-description p:last-child {
    margin-bottom: 0;
}

.eb-bottom {
    margin-top: 0;
}

.eb-bottom img {
    width: 100%;
    display: block;
}

/* Electrical Box — mobile */
@media (max-width: 600px) {
    .eb-main {
        padding: 0 20px 25px;
    }

    .eb-top {
        grid-template-columns: 1fr;
    }

    .eb-right img {
        height: auto;
    }
}

/* Grocery Packaging — mobile */
@media (max-width: 600px) {
    .gp-wrap {
        padding: 0 20px 25px;
    }

    .gp-dark-wrap {
        padding: 0 20px;
    }

    .gp-two-col {
        grid-template-columns: 1fr;
    }

    .gp-four-col {
        grid-template-columns: 1fr 1fr;
    }

    .gp-four-col .gp-stacked {
        grid-column: span 2;
    }
}

/* ======================== */
/* Design Connects Page     */
/* ======================== */

.dc-main {
    flex: 1;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px 20px;
}

.dc-title {
    color: #000;
    margin-top: 30px;
    margin-bottom: 30px;
}

.dc-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.dc-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dc-outlined {
    outline: 0.75px solid #ccc;
}

.dc-description p {
    font-family: 'Google Sans', 'Noto Sans', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 12px;
}

.dc-description p:last-child {
    margin-bottom: 0;
}

/* Design Connects — mobile */
@media (max-width: 600px) {
    .dc-main {
        padding: 0 20px 20px;
    }

    .dc-images {
        grid-template-columns: 1fr;
    }
}

/* Corpse Bloom — tablet */
@media (max-width: 768px) {
    .cb-listen {
        grid-template-columns: 1fr;
    }
}

/* Responsive - single column on mobile */
@media (max-width: 600px) {
    .project-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 22px;
    }

    .site-header {
        padding: 12px 15px;
    }

    .main-nav {
        gap: 15px;
    }

    .main-nav a {
        font-size: 13px;
    }

    .about-page {
        padding: 30px 20px;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-photo {
        width: 200px;
    }

    .about-bio .page-title {
        text-align: center;
    }

    .contact-page {
        padding: 30px 20px 40px;
    }

    .project-page {
        padding: 30px 20px 40px;
    }

    .project-gallery {
        grid-template-columns: 1fr;
    }

    /* Corpse Bloom mobile */
    .cb-wrap {
        padding: 30px 20px 0;
    }

    .cb-wrap-pt {
        padding-bottom: 40px;
    }

    .cb-hero {
        grid-template-columns: 1fr;
    }

    .cb-dark-row {
        padding: 30px 0;
    }

    .cb-dark-row-inner {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 0 20px;
    }

    .cb-dark-row img:last-child {
        grid-column: 1 / -1;
        width: 50%;
        margin: 0 auto;
        display: block;
    }

    .cb-listen-heading {
        font-size: 22px;
    }

    .cb-bts {
        padding: 40px 25px 35px;
    }

    .cb-bts-heading {
        font-size: 22px;
    }

    .cb-bts-credits {
        white-space: normal;
    }
}
