/* ========================================
   DECODED PAGE STYLES
   Design: design/decoded.png
   
   Note: "What We Do", "Why It Matters", and Articles 
   sections reuse global styles from:
   assets/css/components/common-sections.css
   ======================================== */

/* ========================================
   PAGE WRAPPER
   ======================================== */
.decoded-page-wrapper {
    background: #FFFFFF;
}

/* ========================================
   HERO SECTION
   ======================================== */
.decoded-hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.decoded-hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-content-text {
    max-width: 650px;
    padding: 80px 0;
}

.hero-main-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.hero-subtitle-text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.3;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.hero-body-text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary-green {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #7DC242 0%, #6AB839 100%);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-green:hover {
    background: linear-gradient(135deg, #6AB839 0%, #5AA030 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(125, 194, 66, 0.3);
    color: #FFFFFF;
}

.btn-outline-dark {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-dark:hover {
    background: #1a1a1a;
    color: #FFFFFF;
}

/* ========================================
   WHAT WE DO SECTION
   ======================================== */
.what-we-do-section {
    padding: 100px 0;
    background: #F9FAFB;
}

.what-we-do-section .container {
    max-width: 1320px;
}

@media (min-width: 992px) {
    .what-we-do-section .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-heading-large {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -0.96px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.section-subtitle-text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    opacity: 0.8;
}

.what-we-do-grid {
    row-gap: 24px;
    column-gap: 16px;
    margin-left: -8px;
    margin-right: -8px;
}

.what-we-do-grid > [class*='col-'] {
    padding-left: 8px;
    padding-right: 8px;
}

.what-we-do-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 200px;
}

.what-we-do-card.card-green {
    background: linear-gradient(135deg, #7DC242 0%, #6AB839 100%);
    color: #FFFFFF;
    border: none;
}

.what-we-do-card.card-green .card-heading {
    color: #FFFFFF;
}

.what-we-do-card.card-green .card-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.what-we-do-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #F0F9FF;
    color: #7DC242;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
    flex-shrink: 0;
}

.card-text-wrapper {
    flex: 1;
}

.card-heading {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 0;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #E8F5E9 0%, #F1F8E9 100%);
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(125, 194, 66, 0.15);
    color: #7DC242;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
    margin-bottom: 12px;
}

.how-works-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 24px;
}

.how-works-grid > [class*='col-'] {
    flex: 0 0 auto;
    width: auto;
    max-width: 350px;
}

.how-works-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.3s ease;
}

.how-works-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(125, 194, 66, 0.15);
    color: #7DC242;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.how-works-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.how-works-text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

.questions-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.questions-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.questions-subtext {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #666666;
    margin-bottom: 24px;
}

/* ========================================
   PODCASTS SECTION
   ======================================== */
.podcasts-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.section-heading-left {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.podcasts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.podcast-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.podcast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.podcast-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.podcast-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.podcast-card:hover .podcast-image-wrapper img {
    transform: scale(1.05);
}

.podcast-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.podcast-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.podcast-play-button i {
    font-size: 24px;
    color: #000000;
    margin-left: 3px;
}

.podcast-play-disabled {
    opacity: 0.8;
    cursor: default;
}

.podcast-content {
    padding: 20px;
}

.podcast-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #666666;
}

.meta-separator {
    color: #CCCCCC;
}

.podcast-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.podcast-excerpt {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

/* ========================================
   WHY IT MATTERS SECTION
   ======================================== */
.why-it-matters-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.why-it-matters-section .container {
    max-width: 1240px;
}

.matters-card-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 32px;
}

.matters-card-row > [class*='col-'] {
    flex: 0 0 auto;
    width: auto;
    max-width: 380px;
}

.matters-card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 20px;
    gap: 24px;
    background: #FFFFFF;
    box-shadow: 12px 16px 50px rgba(154, 154, 154, 0.12);
    border-radius: 12px;
    height: 100%;
    min-height: 220px;
    transition: all 0.3s ease;
}

.matters-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 12px 16px 60px rgba(154, 154, 154, 0.18);
}

.matters-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: rgba(227, 227, 227, 0.45);
    border-radius: 50%;
    flex-shrink: 0;
}

.matters-icon-circle i {
    font-size: 32px;
    color: #000000;
}

.matters-card-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    color: #1a1a1a;
    margin: 0;
}

/* ========================================
   ARTICLES SECTION
   ======================================== */
.articles-blog-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.articles-section-heading {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 48px;
}

.articles-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.blog-post-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #666666;
}

.blog-heading-icon-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.blog-card-heading {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.blog-card-heading a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-heading a:hover {
    color: #7DC242;
}

.blog-icon-wrapper {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #F0F9FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #7DC242;
    flex-shrink: 0;
}

.blog-supporting-text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 16px;
}

.blog-categories-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.badge-item {
    display: inline-block;
    padding: 5px 12px;
    background: #F0F9FF;
    color: #7DC242;
    font-size: 12px;
    font-weight: 500;
    border-radius: 16px;
}

/* Pagination */
.blog-pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.pagination-button-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-button-nav:hover {
    background: #F9FAFB;
    border-color: #D1D5DB;
    color: #1a1a1a;
}

.pagination-button-nav.pagination-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-numbers-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-number-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-number-btn:hover {
    background: #F9FAFB;
    border-color: #D1D5DB;
}

.pagination-number-btn.pagination-active {
    background: #7DC242;
    border-color: #7DC242;
    color: #FFFFFF;
}

.pagination-ellipsis {
    color: #666666;
    font-size: 14px;
}

.no-articles-message {
    text-align: center;
    padding: 60px 20px;
    background: #F9FAFB;
    border-radius: 12px;
    color: #666666;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1199px) {
    .hero-main-title {
        font-size: 52px;
    }
    
    .hero-subtitle-text {
        font-size: 28px;
    }
    
    .section-heading-large {
        font-size: 40px;
    }
    
    .podcasts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .articles-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .how-works-grid {
        flex-wrap: wrap;
    }
    
    .how-works-grid > [class*='col-'] {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
    
    .matters-card-row {
        flex-wrap: wrap;
    }
    
    .matters-card-row > [class*='col-'] {
        flex: 0 0 calc(50% - 16px);
        max-width: calc(50% - 16px);
    }
}

@media (max-width: 991px) {
    .decoded-hero-section {
        min-height: 450px;
    }
    
    .hero-content-text {
        padding: 60px 0;
        max-width: 100%;
    }
    
    .hero-main-title {
        font-size: 44px;
    }
    
    .hero-subtitle-text {
        font-size: 24px;
    }
    
    .hero-body-text br {
        display: none;
    }
    
    .what-we-do-section,
    .how-it-works-section,
    .podcasts-section,
    .why-it-matters-section,
    .articles-blog-section {
        padding: 80px 0;
    }
    
    .section-heading-large {
        font-size: 36px;
    }
    
    .section-heading-left,
    .articles-section-heading {
        font-size: 32px;
    }
    
    .what-we-do-grid {
        display: flex;
        flex-wrap: wrap;
    }
    
    .what-we-do-grid > .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .how-works-grid > [class*='col-'] {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .matters-card-row {
        gap: 24px;
    }
    
    .matters-card-row > [class*='col-'] {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .matters-card-item {
        padding: 24px 16px;
    }
    
    .podcast-image-wrapper {
        height: 180px;
    }
    
    .blog-card-image {
        height: 180px;
    }
}

@media (max-width: 767px) {
    .decoded-hero-section {
        min-height: auto;
    }
    
    .hero-content-text {
        padding: 100px 0 60px;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-main-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .hero-subtitle-text {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .hero-subtitle-text br {
        display: none;
    }
    
    .hero-body-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    
    .btn-primary-green {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .what-we-do-section,
    .how-it-works-section,
    .podcasts-section,
    .why-it-matters-section,
    .articles-blog-section {
        padding: 50px 0;
    }
    
    .section-header-centered {
        margin-bottom: 32px;
        padding: 0 10px;
    }
    
    .section-heading-large {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .section-subtitle-text {
        font-size: 14px;
    }
    
    .section-heading-left,
    .articles-section-heading {
        font-size: 22px;
        margin-bottom: 24px;
    }
    
    /* What We Do - Stack on mobile */
    .what-we-do-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .what-we-do-grid > [class*='col-'] {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .what-we-do-card {
        min-height: auto;
        padding: 20px 16px;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
    
    .card-icon-wrapper {
        margin-bottom: 0;
        width: 40px;
        height: 40px;
        font-size: 18px;
        flex-shrink: 0;
    }
    
    .card-heading {
        font-size: 15px;
    }
    
    /* How It Works - Stack on mobile */
    .how-it-works-section {
        padding: 50px 0;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .how-works-grid {
        flex-direction: column;
        gap: 16px;
    }
    
    .how-works-grid > [class*='col-'] {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .how-works-card {
        padding: 24px 20px;
    }
    
    .step-number-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .how-works-title {
        font-size: 17px;
        margin-bottom: 8px;
    }
    
    .how-works-text {
        font-size: 14px;
    }
    
    .questions-cta {
        margin-top: 40px;
        padding-top: 32px;
    }
    
    .questions-text {
        font-size: 17px;
    }
    
    .questions-subtext {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .btn-outline-dark {
        padding: 10px 24px;
        font-size: 13px;
    }
    
    /* Podcasts - Stack on mobile */
    .podcasts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .podcast-image-wrapper {
        height: 180px;
    }
    
    .podcast-play-button {
        width: 52px;
        height: 52px;
    }
    
    .podcast-play-button i {
        font-size: 20px;
    }
    
    .podcast-content {
        padding: 16px;
    }
    
    .podcast-meta {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .podcast-title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .podcast-excerpt {
        font-size: 13px;
    }
    
    /* Why It Matters - Stack on mobile */
    .matters-card-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .matters-card-row > [class*='col-'] {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .matters-card-item {
        padding: 24px 16px;
        min-height: auto;
        gap: 16px;
    }
    
    .matters-icon-circle {
        width: 56px;
        height: 56px;
    }
    
    .matters-icon-circle i {
        font-size: 24px;
    }
    
    .matters-card-title {
        font-size: 15px;
    }
    
    /* Articles - Stack on mobile */
    .articles-blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 32px;
    }
    
    .blog-card-image {
        height: 180px;
    }
    
    .blog-card-content {
        padding: 16px;
    }
    
    .blog-meta-info {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .blog-card-heading {
        font-size: 16px;
    }
    
    .blog-icon-wrapper {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .blog-supporting-text {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .badge-item {
        padding: 4px 10px;
        font-size: 11px;
    }
    
    /* Pagination - Mobile friendly */
    .blog-pagination-wrapper {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .pagination-button-nav {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .pagination-numbers-wrap {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }
    
    .pagination-number-btn {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    
    .no-articles-message {
        padding: 40px 16px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-content-text {
        padding: 90px 0 50px;
    }
    
    .hero-main-title {
        font-size: 28px;
    }
    
    .hero-subtitle-text {
        font-size: 16px;
    }
    
    .hero-body-text {
        font-size: 13px;
    }
    
    .section-heading-large {
        font-size: 22px;
    }
    
    .section-heading-left,
    .articles-section-heading {
        font-size: 20px;
    }
    
    .what-we-do-section,
    .how-it-works-section,
    .podcasts-section,
    .why-it-matters-section,
    .articles-blog-section {
        padding: 40px 0;
    }
    
    .podcast-image-wrapper {
        height: 160px;
    }
    
    .blog-card-image {
        height: 160px;
    }
}
