:root {
    --bg-dark-top: #162629;
    --bg-gradient-center: #3B9883;
    /* Center of the glow */
    --bg-gradient-outer: #0F3635;
    /* Outer of the top section */

    --text-primary: #FFFFFF;
    --text-secondary: #E0EAE8;
    --accent: #24876F;
    /* Deep green */
    --accent-light: #41AFAF;
    /* Light green/teal */

    --section-bg: #F8F5F2;
    /* Off-white for bottom section */

    --card-bg: #FFFFFF;
    --card-title-color: #1a1a1a;
    --card-text-color: #8C9697;
    --card-number: #CA8E5A;
    /* Orange/brown for the numbers */
    --link-color: #24876F;
}

* {
    font-family: "Alan Sans", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: var(--text-primary);
    overflow-x: hidden;
}

/* ==================================
   Hero Section
   ================================== */
.hero-section {
    position: relative;
    width: 100%;
    background-image: url("../images/banner-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    padding-bottom: 70px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #FFFFFF;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 400;
    color: #eff3f3;
    line-height: 1.6;
    max-width: 90%;
}

.btn-pitch {
    background-color: #172a2a;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 32px;
    border-radius: 6px;
    letter-spacing: 1.5px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.btn-pitch:hover {
    background-color: #1d3636;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.divider {
    width: 60px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
}

.venture-text {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.graphic-container img {
    max-width: 100%;
}

/* ==================================
   Content Section
   ================================== */
.how-we-operate {
    background-color: #F7F4EE;
    padding: 50px 0px;
}

.small-divider {
    width: 30px;
    height: 1px;
    background-color: #0B4A3E;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #0B4A3E;
}

.section-title {
    font-size: 2.5rem;
    color: #121722;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 10px;
}

.highlight-text {
    color: #0F5C4D;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
}

.section-description {
    font-size: 1.15rem;
    color: #8E8F92;
    line-height: 1.6;
}

/* Feature Cards */
.feature-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px 10px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.feature-card:hover .feature-card-inner{
    border-top: 2px solid #0F5C4D;
    padding-top: 20px;
}

.icon-wrapper {
    background-color: #DEE9E68F;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

.icon-wrapper img {
    height: 50px;
    width: auto;
}

.card-number {
    color: #B8945B;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #1C2230;
}

.card-text {
    font-size: 0.95rem;
    color: #20242B80;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .graphic-container {
        margin-top: 50px;
    }

    .mar-b {
        margin-bottom: 50px;
    }

    .mar-b-1 {
        margin-bottom: 20px;
    }
}

/* ==================================
   What We Look For Section
   ================================== */
.what-we-look-for {
    background-image: url("../images/what-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.small-divider-light {
    width: 30px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.section-subtitle-light {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2.5px;
    color: #EBF1EE;
    text-transform: uppercase;
}

.look-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.25;
}

/* Bullet indicator */
.look-dot-indicator {
    flex-shrink: 0;
}

.look-indicator-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #24876F;
    box-shadow: 0 0 0 4px #B8D1CF;
}

.look-indicator-line {
    height: 82%;
    width: 1px;
    background-color: #B8D1CF;
    position: relative;
    left: 5px;
    top: 5px;
}

.look-item-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: #FCFBF8;
    margin-bottom: 8px;
}

.look-item-text {
    font-size: 1rem;
    color: #F7F4EE;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 991px) {
    .what-we-look-for {
        padding: 100px 0 52px 0px;
        background-position: right;
    }
}

/* ==================================
   3 Things in the Kettle Section
   ================================== */
.what-we-have {
    background-color: #F7F4EE;
    padding: 50px 0px;
}

.kettle-card {
    background: #EBF1EE;
    border-radius: 20px;
    padding: 150px 50px 60px 50px;
    position: relative;
    overflow: hidden;
    border: 1px solid #0F5C4D3B;
}

.watermark-text {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    font-size: 8rem;
    font-weight: 400;
    color: #1D6A5B29;
    letter-spacing: 8px;
    text-align: center;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    line-height: 1;
}

@media (max-width: 1200px) {
    .watermark-text {
        font-size: 7rem;
    }
}

@media (max-width: 991px) {
    .watermark-text {
        font-size: 5rem;
    }

    .kettle-card {
        padding: 95px 50px 60px 50px;
    }
}

.kettle-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.kettle-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #242937;
}

.kettle-highlight {
    color: #0F5C4D;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.kettle-item {
    padding: 20px 10px;
}

.kettle-icon-wrap {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.kettle-icon-wrap img {
    width: 100px;
}

.kettle-item-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: #1C2230;
    margin-bottom: 10px;
}

.kettle-item-text {
    font-size: 1rem;
    color: #20242B80;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 767px) {
    .kettle-card {
        padding: 80px 24px 40px;
    }

    .watermark-text {
        font-size: 3.8rem;
        letter-spacing: 4px;
    }
}

/* ==================================
   Who We Back Section
   ================================== */
.who-we-back {
    background-image: url("../images/who-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 90px 0 70px;
}

.who-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #F7F4EE;
    line-height: 1.2;
}

.who-div {
    border-top: 1px solid #EBF1EE;
    padding: 40px 0px 100px 0px;
}

.who-div-1 {
    border-top: 1px solid #EBF1EE;
    padding: 40px 0px;
}

.who-stat-label {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #FCFBF8;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.who-stat-value {
    font-size: 1.5rem;
    font-weight: 500;
    color: #B8D1CF;
    margin-bottom: 12px;
    line-height: 1.2;
}

.who-stat-text {
    font-size: 1rem;
    color: #FCFBF8;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 767px) {

    .who-div,
    .who-div-1 {
        padding: 30px 0px;
    }
}

/* ==================================
   The POUR Process Section
   ================================== */
.pour-process {
    background-color: #F7F4EE;
    padding: 50px 0px;
}

.pour-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #1C2230;
    margin-top: 8px;
}

.pour-highlight {
    color: #0F5C4D;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
}

.pour-description {
    font-size: 1rem;
    color: #20242B;
    line-height: 1.65;
    max-width: 800px;
}

.arrows-div {
    display: flex;
    margin-bottom: -73px;
}

.arrow-1 {
    position: relative;
    left: 328px;
    top: 30px;
}

.arrow-2 {
    position: relative;
    left: 492px;
    top: 318px;
}

.arrow-3 {
    position: relative;
    top: 16px;
    transform: rotate(12deg);
    left: 658px;
}

@media (max-width: 1400px) {
    .arrow-1 {
        left: 282px;
    }

    .arrow-2 {
        left: 400px;
        top: 342px;
    }

    .arrow-3 {
        left: 522px;
    }
}

@media (max-width: 1200px) {
    .arrow-1 {
        left: 238px;
    }

    .arrow-2 {
        left: 312px;
        top: 396px;
    }

    .arrow-3 {
        left: 388px;
    }
}

@media (max-width: 991px) {
    .arrows-div {
        display: none;
    }
}

/* Cascading 4-step grid: alternates high / low */
.pour-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.pour-step {
    background: #B8D1CF30;
    border-radius: 14px;
    padding: 20px 10px;
    margin: 8px;
    border: 1px solid #0F5C4D;
    position: relative;
    z-index: 1;
}

.pour-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
}

/* Steps 1 & 3 sit higher, steps 2 & 4 sit lower — creating the wave */
.pour-step--1,
.pour-step--3 {
    margin-top: 0;
    margin-bottom: 100px;
}

.pour-step--2,
.pour-step--4 {
    margin-top: 100px;
    margin-bottom: 0;
}

.pour-step-icon {
    margin-bottom: 20px;
}

.pour-step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1B1C19;
    margin-bottom: 10px;
}

.pour-step-text {
    font-size: 1rem;
    color: #242A37;
    line-height: 1.65;
    margin: 0;
}

/* Quote block */
.pour-quote {
    background: #242A37;
    border-left: 15px solid #B8945B;
    border-radius: 12px;
    padding: 30px 40px;
    margin-top: 70px;
}

.pour-quote-text {
    font-size: 1rem;
    color: #F7F4EE;
    line-height: 1.7;
    margin: 0;
    font-style: normal;
}

.pour-quote-text em {
    font-style: italic;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
    .pour-steps-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .pour-steps-grid::before {
        display: none;
    }

    .pour-step--1,
    .pour-step--3,
    .pour-step--2,
    .pour-step--4 {
        margin-top: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .pour-steps-grid {
        grid-template-columns: 1fr;
    }

    .pour-quote {
        padding: 24px;
    }
}

/* ==================================
   Founders We've Poured Into Section
   ================================== */
.founders-poured {
    background-image: url("../images/who-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 90px 0 70px;
}

.founders-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #F7F4EE;
    line-height: 1.2;
    margin-bottom: 20px;
}

.founders-lead {
    font-size: 1.15rem;
    color: #EBF1EE;
    line-height: 1.65;
    margin-bottom: 60px;
}

.founders-row img {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
}

.founders-copy {
    font-size: 1.15rem;
    color: #FCFBF8;
    line-height: 1.65;
    margin-bottom: 28px;
}

.founders-news-btn {
    background-color: #F7F4EE;
    color: #0F5C4D;
    border: none;
    padding: 12px 32px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0;
    box-shadow: none;
}

.founders-news-btn:hover,
.founders-news-btn:focus {
    background-color: #ffffff;
    color: #0B4A3E;
}

@media (max-width: 991px) {
    .founders-lead {
        margin-bottom: 40px;
    }
}

/* ==================================
   Why Cup Is Different Section
   ================================== */
.differentiation {
    background-color: #EBF1EE;
    padding: 50px 0px;
}

.diff-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #121722;
    line-height: 1.2;
}

.diff-row {
    display: grid;
    grid-template-columns: 60px 260px 1fr;
    align-items: start;
    gap: 0 32px;
    padding: 36px 20px;
    border-radius: 15px;
}

.diff-row:hover {
    background-color: #F7F4EE;
    border: 1px solid #0F5C4D;
    cursor: pointer;
}

.diff-number {
    font-size: 1rem;
    font-weight: 600;
    color: #B8945B;
    letter-spacing: 1px;
}

.diff-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0F5C4D;
    line-height: 1.4;
}

.diff-text {
    font-size: 1rem;
    color: #121722;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .diff-row {
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto auto;
        gap: 6px 16px;
        padding: 24px 15px;
    }

    .diff-label {
        grid-column: 2;
    }

    .diff-text {
        grid-column: 1 / -1;
        padding-top: 8px;
    }
}

/* ==================================
   Investing in Talas (press release)
   ================================== */
.pr-header {
    background-color: #0F3635;
    background-image: url("../images/banner-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 22px 0;
}

.pr-header .logo {
    text-decoration: none;
}

.pr-header .logo img {
    display: block;
}

.pr-page {
    background-color: #F7F4EE;
    padding: 70px 0 80px;
    color: #121722;
}

.pr-kicker {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #0F5C4D;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.pr-rule {
    width: 100%;
    height: 1px;
    background-color: #0B4A3E;
    opacity: 0.25;
    margin-bottom: 36px;
}

.pr-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #121722;
    line-height: 1.2;
    margin-bottom: 16px;
}

.pr-source {
    font-size: 1.15rem;
    font-weight: 400;
    color: #121722;
    margin-bottom: 6px;
}

.pr-date {
    font-size: 1rem;
    font-style: italic;
    color: #8E8F92;
    margin-bottom: 36px;
}

.pr-body {
    font-size: 1.15rem;
    color: #8E8F92;
    line-height: 1.7;
    margin-bottom: 24px;
}

.pr-body strong {
    color: #121722;
    font-weight: 600;
}

.pr-feature {
    margin: 40px 0 36px;
}

.pr-logo-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    background: none;
}

.pr-feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #121722;
    line-height: 1.4;
    margin-bottom: 12px;
}

.pr-quote {
    background-color: #1C2230;
    padding: 90px 0;
    text-align: center;
}

.pr-quote-photo {
    width: 128px;
    height: 128px;
    display: block;
    margin: 0 auto 32px;
}

.pr-quote-intro {
    font-size: 1.15rem;
    font-weight: 400;
    color: #F7F4EE;
    line-height: 1.6;
    margin-bottom: 28px;
}

.pr-quote-intro strong {
    font-weight: 600;
}

.pr-quote-text {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: 1.3rem;
    color: #EBF1EE;
    line-height: 1.75;
    max-width: 920px;
    margin: 0 auto;
}

.pr-team {
    background-color: #F7F4EE;
    padding: 70px 0 80px;
}

.pr-team-lead {
    margin-bottom: 56px;
}

.pr-team-lead em {
    font-style: italic;
    font-weight: 600;
    color: #121722;
}

.pr-team-intro {
    margin-bottom: 48px;
}

.pr-member {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0 36px;
    align-items: start;
    padding: 36px 0;
    border-bottom: 1px solid #0B4A3E40;
}

.pr-member--last {
    border-bottom: none;
    padding-bottom: 0;
}

.pr-member-photo {
    width: 120px;
    height: 120px;
    display: block;
}

.pr-member-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.pr-member-name {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 500;
    color: #0F5C4D;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    line-height: 1.3;
}

.pr-member-name:hover {
    color: #0B4A3E;
}

.pr-member-role {
    font-size: 1rem;
    color: #121722;
    margin-top: 4px;
}

.pr-member-in {
    flex-shrink: 0;
    line-height: 0;
}

.pr-member-in img {
    width: 48px;
    height: 48px;
    display: block;
}

.pr-member-bio {
    font-size: 1.15rem;
    color: #8E8F92;
    line-height: 1.7;
    margin: 0;
    max-width: 820px;
}

/* ==================================
   Footer
   ================================== */
.site-footer {
    background-image: url("../images/footer-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding-bottom: 60px;
    border-bottom: 1px solid #F7F4EE;
}

.footer-label {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 6px;
    color: #B8945B;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-body {
    font-size: 1rem;
    color: #FDFCF0;
    line-height: 1.75;
    max-width: 450px;
    margin: 0 0 20px;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #FDFCF0;
}

.footer-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #24876F;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(36, 135, 111, 0.25);
}

/* Right */
.footer-right {
    position: relative;
}

.footer-email {
    font-size: 1.1rem;
    font-weight: 400;
    color: #FDFCF0;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-email:hover {
    color: #4dbfb0;
    text-decoration-color: #4dbfb0;
}

/* Bottom bar */
.footer-bottom {
    padding: 20px 0;
    font-size: 1rem;
    color: #FDFCF0;
    text-align: center;
    border-top: none;
}

.text-align-end {
    text-align: end;
}

@media (max-width: 991px) {
    .footer-right {
        align-items: flex-start !important;
        margin-top: 40px;
    }

    .footer-watermark {
        display: none;
    }

    .text-align-end {
        text-align: start;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .btn-pitch {
        padding: 12px 20px;
        letter-spacing: 1px;
        font-size: 0.9rem;
    }

    .divider {
        width: 30px;
    }

    .venture-text {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }

    .hero-section {
        padding-bottom: 40px;
    }

    .how-we-operate {
        padding: 8px 0px;
    }

    .small-divider {
        width: 20px;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

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

    .section-description {
        font-size: 0.9rem;
    }

    .card-number {
        font-size: 1rem;
    }

    .card-title {
        font-size: 1rem;
    }

    .card-text {
        font-size: 0.8rem;
    }

    .what-we-look-for {
        padding: 50px 0 10px 0;
    }

    .small-divider-light {
        width: 20px;
    }

    .section-subtitle-light {
        font-size: 0.9rem;
    }

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

    .look-item-title {
        font-size: 1rem;
    }

    .look-item-text {
        font-size: 0.8rem;
    }

    .what-we-have {
        padding: 10px 0px;
    }

    .watermark-text {
        font-size: 2.4rem;
        letter-spacing: 2px;
    }

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

    .kettle-card {
        padding: 60px 24px 20px;
    }

    .kettle-item-title {
        font-size: 1rem;
    }

    .kettle-item-text {
        font-size: 0.8rem;
    }

    .who-we-back {
        padding: 50px 0 30px;
    }

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

    .who-stat-label {
        font-size: 0.7rem;
    }

    .who-stat-value {
        font-size: 1.1rem;
    }

    .who-stat-text {
        font-size: 0.8rem;
    }

    .pour-process {
        padding: 5px 0px 30px 0px;
    }

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

    .pour-description {
        font-size: 0.8rem;
    }

    .pour-step-title {
        font-size: 1rem;
    }

    .pour-step-text {
        font-size: 0.8rem;
    }

    .pour-quote {
        padding: 20px;
        margin-top: 40px;
    }

    .pour-quote-text {
        font-size: 0.8rem;
    }

    .founders-poured {
        padding: 50px 0 30px;
    }

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

    .founders-lead {
        font-size: 0.9rem;
        margin-bottom: 32px;
    }

    .founders-row img {
        max-width: 320px;
        margin-bottom: 8px;
    }

    .founders-copy {
        font-size: 0.9rem;
    }

    .founders-news-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .differentiation {
        padding: 20px 0px 0px 0px;
    }

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

    .diff-number {
        font-size: 1rem;
    }

    .diff-label {
        font-size: 1rem;
    }

    .diff-text {
        font-size: 0.8rem;
    }

    .pr-page {
        padding: 40px 0 50px;
    }

    .pr-kicker {
        font-size: 0.9rem;
    }

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

    .pr-source {
        font-size: 1rem;
    }

    .pr-date {
        font-size: 0.8rem;
        margin-bottom: 24px;
    }

    .pr-body {
        font-size: 0.9rem;
    }

    .pr-feature {
        margin: 28px 0 24px;
    }

    .pr-logo-img {
        max-width: 320px;
        margin-bottom: 16px;
    }

    .pr-feature-title {
        font-size: 1rem;
    }

    .pr-quote {
        padding: 50px 0 40px;
    }

    .pr-quote-photo {
        width: 96px;
        height: 96px;
        margin-bottom: 24px;
    }

    .pr-quote-intro {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .pr-quote-text {
        font-size: 1rem;
    }

    .pr-team {
        padding: 40px 0 50px;
    }

    .pr-team-lead {
        margin-bottom: 36px;
    }

    .pr-team-intro {
        margin-bottom: 28px;
    }

    .pr-member {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 28px 0;
    }

    .pr-member-photo {
        width: 96px;
        height: 96px;
    }

    .pr-member-name {
        font-size: 1.1rem;
    }

    .pr-member-role {
        font-size: 0.9rem;
    }

    .pr-member-in img {
        width: 32px;
        height: 32px;
    }

    .pr-member-bio {
        font-size: 0.9rem;
    }

    .site-footer {
        padding: 50px 0 0;
    }

    .footer-label {
        font-size: 0.9rem;
    }

    .footer-body {
        font-size: 0.8rem;
    }

    .footer-location {
        font-size: 0.7rem;
    }

    .footer-email {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}