/* ============================================
   13 HOMES — Info Pages Shared Styles
   For: building-process / knockdown-rebuild /
        tips-inspiration
   ============================================ */

/* =========================================================
   FULL-BLEED HERO
   ========================================================= */
.info-hero {
    position: relative;
    min-height: 78vh;
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 0 0 80px;
}

.info-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.info-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.20) 30%,
        rgba(0, 0, 0, 0.65) 75%,
        rgba(0, 0, 0, 0.90) 100%);
}

.info-hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
}

.info-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 26px;
}

.info-hero-eyebrow::before {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--accent);
}

.info-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: #fff;
    margin: 0 0 24px;
    max-width: 18ch;
}

.info-hero h1 em {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}

.info-hero-lead {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 32px;
    max-width: 56ch;
    font-weight: 300;
}

.info-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero stats strip overlapping hero/section */
.info-hero-stats {
    position: relative;
    z-index: 6;
    margin-top: -56px;
    margin-bottom: -56px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background: var(--white);
    border-radius: 8px;
    padding: 32px 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.info-hero-stat {
    text-align: left;
}

.info-hero-stat-num {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.info-hero-stat-num .unit {
    font-size: 0.6em;
    color: var(--accent);
    margin-left: 4px;
}

.info-hero-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* =========================================================
   GENERIC SECTION
   ========================================================= */
.info-section {
    padding: 130px 0;
    background: var(--white);
}

.info-section.alt {
    background: var(--off-white);
}

.info-section.dark {
    background: var(--primary);
    color: #fff;
}

.info-section.dark .info-section-header h2,
.info-section.dark .info-section-header p {
    color: #fff;
}

.info-section.dark .info-section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.info-section-header {
    max-width: 760px;
    margin: 0 auto 80px;
    text-align: center;
    padding: 0 20px;
}

.info-section-header .section-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}

.info-section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--primary);
    margin: 0 0 22px;
}

.info-section-header h2 em {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}

.info-section-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    font-weight: 300;
}

/* =========================================================
   VALUE PROP CARDS (3-col)
   ========================================================= */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    padding: 40px 32px;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.info-section.alt .value-card {
    background: var(--white);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(201, 168, 76, 0.4);
}

.value-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(201, 168, 76, 0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-card:hover .value-card-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.08);
}

.value-card-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.5;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}

.value-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.96rem;
    line-height: 1.65;
    color: var(--text-light);
    margin: 0;
    font-weight: 300;
}

/* =========================================================
   STEP TIMELINE (vertical, alternating)
   ========================================================= */
.step-timeline {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
}

.step-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 60px;
    bottom: 60px;
    width: 1px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(201, 168, 76, 0.4) 8%,
        rgba(201, 168, 76, 0.4) 92%,
        transparent 100%);
    transform: translateX(-0.5px);
}

.step-row {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    gap: 0;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-row.in-view {
    opacity: 1;
    transform: translateY(0);
}

.step-row:nth-child(even) .step-content {
    order: 3;
    text-align: right;
    padding-right: 0;
    padding-left: 40px;
}

.step-row:nth-child(even) .step-image {
    order: 1;
    padding-right: 40px;
    padding-left: 0;
}

.step-content {
    padding-right: 40px;
}

.step-image {
    padding-left: 40px;
}

.step-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-row:hover .step-image img {
    transform: scale(1.02);
}

.step-marker {
    width: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-marker-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.08),
                0 12px 24px rgba(28, 28, 28, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-row.in-view .step-marker-num {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.15),
                0 16px 36px rgba(201, 168, 76, 0.25);
}

.step-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    font-weight: 500;
    color: var(--primary);
    margin: 0 0 16px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.step-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0 0 18px;
    font-weight: 300;
}

.step-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.step-content ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text);
}

.step-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.step-row:nth-child(even) .step-content ul li {
    padding-right: 22px;
    padding-left: 0;
}

.step-row:nth-child(even) .step-content ul li::before {
    left: auto;
    right: 0;
}

.step-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    padding: 6px 14px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.05em;
}

.step-meta svg {
    width: 14px;
    height: 14px;
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.info-faq {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

.info-faq-item {
    border-bottom: 1px solid var(--gray-200);
    padding: 0;
}

.info-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 26px 0;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    letter-spacing: -0.01em;
    transition: color 0.25s ease;
}

.info-faq-question:hover { color: var(--accent); }

.info-faq-question-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-top: 2px;
}

.info-faq-question-icon svg {
    width: 12px;
    height: 12px;
    stroke-width: 2.5;
}

.info-faq-item.open .info-faq-question-icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: #fff;
}

.info-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.info-faq-item.open .info-faq-answer {
    max-height: 600px;
}

.info-faq-answer-inner {
    padding: 0 0 28px;
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--text-light);
    font-weight: 300;
    max-width: 64ch;
}

/* =========================================================
   AREA LIST (service areas / regions)
   ========================================================= */
.area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

.area-chip {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    padding: 18px 22px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.area-chip::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.area-chip:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 168, 76, 0.5);
    transform: translateY(-2px);
}

/* =========================================================
   CTA STRIP
   ========================================================= */
.info-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.info-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(201,168,76,0.20), transparent 60%);
}

.info-cta-content {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.info-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 500;
    line-height: 1.12;
    color: #fff;
    margin: 0 0 22px;
    letter-spacing: -0.02em;
}

.info-cta h2 em {
    font-style: italic;
    color: var(--accent);
}

.info-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 36px;
    line-height: 1.7;
    font-weight: 300;
}

.info-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================================
   APPROACH CARDS (three tiers: Essential / Elite / Master)
   ========================================================= */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.approach-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
}

.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 36px 70px rgba(0, 0, 0, 0.12);
}

.approach-card.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 24px 60px rgba(201, 168, 76, 0.2);
}

.approach-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--gray-100);
    position: relative;
}

.approach-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.approach-card-flag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--accent);
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 100px;
}

.approach-card-body {
    padding: 32px 28px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.approach-card-tier {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.approach-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

.approach-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0 0 22px;
    font-weight: 300;
}

.approach-steps {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--gray-100);
    padding-top: 22px;
}

.approach-steps li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.5;
}

.approach-steps li::before {
    content: counter(step);
    counter-increment: step;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.12);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-steps {
    counter-reset: step;
}

.approach-card .btn {
    margin-top: auto;
}

/* =========================================================
   ARTICLE / TIP CARDS (for Tips & Inspiration)
   ========================================================= */
.tips-featured {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.tip-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.tip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.tip-card.featured {
    grid-row: span 2;
}

.tip-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--gray-100);
    position: relative;
}

.tip-card.featured .tip-card-image {
    aspect-ratio: 16 / 11;
}

.tip-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.tip-card:hover .tip-card-image img {
    transform: scale(1.06);
}

.tip-card-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.tip-card-body {
    padding: 24px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tip-card.featured .tip-card-body {
    padding: 32px 30px 30px;
}

.tip-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary);
    margin: 0 0 10px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.tip-card.featured h3 {
    font-size: 1.6rem;
}

.tip-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0 0 16px;
    font-weight: 300;
}

.tip-card-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.tip-card-arrow {
    color: var(--accent);
    transition: transform 0.3s ease;
}

.tip-card:hover .tip-card-arrow {
    transform: translateX(4px);
}

.tip-cat-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 920px;
    margin: 0 auto 60px;
    padding: 0 24px;
    justify-content: center;
}

.tip-cat-chip {
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 9px 22px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.tip-cat-chip:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.tip-cat-chip.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* =========================================================
   DOWNLOAD CARDS
   ========================================================= */
.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

.download-card {
    background: var(--white);
    border-radius: 8px;
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
}

.download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.10);
}

.download-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(201, 168, 76, 0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.download-card-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.5;
}

.download-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 8px;
}

.download-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--text-light);
    margin: 0 0 12px;
    line-height: 1.5;
    font-weight: 300;
}

.download-card-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .value-grid,
    .approach-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

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

    .info-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .tips-featured {
        grid-template-columns: 1fr 1fr;
    }

    .tip-card.featured {
        grid-row: auto;
        grid-column: span 2;
    }

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

@media (max-width: 768px) {
    .info-hero { min-height: 65vh; padding-bottom: 60px; }
    .info-section { padding: 80px 0; }

    .step-timeline::before { display: none; }
    .step-row {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 56px;
    }

    .step-row .step-content,
    .step-row:nth-child(even) .step-content {
        order: 2;
        padding: 0 8px;
        text-align: left;
    }

    .step-row .step-content ul li,
    .step-row:nth-child(even) .step-content ul li {
        padding-left: 22px;
        padding-right: 0;
    }

    .step-row .step-content ul li::before,
    .step-row:nth-child(even) .step-content ul li::before {
        left: 0;
        right: auto;
    }

    .step-row .step-image,
    .step-row:nth-child(even) .step-image {
        order: 1;
        padding: 0;
    }

    .step-marker {
        order: 0;
        width: auto;
    }

    .info-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .tips-featured {
        grid-template-columns: 1fr;
    }

    .tip-card.featured {
        grid-column: auto;
    }

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