.cl-home {
    --container-width: 1280px;
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 48px;
    --space-6: 64px;
    --space-7: 80px;
    --radius-sm: 10px;
    --radius-md: 12px;
    --border-subtle: #e7ece8;
    --text-primary: #17324d;
    --text-secondary: #536a7b;
    --brand-green: #39a916;
    --brand-green-dark: #3f7618;
    --surface-subtle: #f8faf7;
    --transition-fast: 180ms ease;
    box-sizing: border-box;
    width: min(100%, calc(var(--container-width) + (var(--space-4) * 2)));
    margin-inline: auto;
    padding: var(--space-5) var(--space-4) var(--space-7);
    color: var(--text-secondary);
}

.cl-home *,
.cl-home *::before,
.cl-home *::after {
    box-sizing: border-box;
}

.cl-home h1,
.cl-home h2,
.cl-home h3 {
    color: var(--text-primary);
}

.cl-home h1 {
    margin: 0;
    font-size: clamp(2.5rem, 3.3vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.cl-home h2 {
    margin: 0;
    font-size: clamp(1.625rem, 2.25vw, 1.875rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.025em;
}

.cl-home h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}

.cl-home p {
    line-height: 1.5;
}

.cl-home a:focus-visible {
    outline: 3px solid rgba(57, 169, 22, .42);
    outline-offset: 3px;
}

.cl-home__section {
    margin-top: var(--space-6);
}

.cl-home__section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.cl-home__section-link,
.cl-home__all-objectives {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand-green-dark);
    font-size: .9375rem;
    font-weight: 650;
    text-decoration: none;
}

.cl-home__section-link span,
.cl-home__all-objectives span {
    transition: transform var(--transition-fast);
}

.cl-home__section-link:hover span,
.cl-home__section-link:focus-visible span,
.cl-home__all-objectives:hover span,
.cl-home__all-objectives:focus-visible span {
    transform: translateX(3px);
}

.cl-home__objectives-section > header {
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
}

.cl-home__objectives-section > header p {
    margin: 10px 0 0;
    font-size: .9375rem;
}

.cl-home__objectives {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.cl-home__objectives--count-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.cl-home__objective {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 156px;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-3);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: #fbfcfa;
    color: var(--text-primary);
    cursor: pointer;
    text-decoration: none;
    transition: border-color var(--transition-fast), background-color var(--transition-fast), transform var(--transition-fast);
}

.cl-home__objective svg,
.cl-home__objective img {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    color: var(--brand-green);
}

.cl-home__objective > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
    margin-top: var(--space-2);
}

.cl-home__objective strong {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
}

.cl-home__objective small {
    display: -webkit-box;
    overflow: hidden;
    color: var(--text-secondary);
    font-size: .875rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.cl-home__objective > b {
    position: absolute;
    right: var(--space-2);
    bottom: var(--space-2);
    color: var(--brand-green-dark);
    font-weight: 600;
    opacity: 0;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.cl-home__objective:hover,
.cl-home__objective:focus-visible {
    border-color: rgba(57, 169, 22, .55);
    background: var(--surface-subtle);
    transform: translateY(-2px);
}

.cl-home__objective:hover > b,
.cl-home__objective:focus-visible > b {
    opacity: 1;
    transform: translateX(3px);
}

.cl-home__all-objectives {
    width: fit-content;
    margin: var(--space-3) 0 0;
}

.cl-home__next {
    display: grid;
    grid-template-columns: minmax(190px, 19%) minmax(0, 1fr);
    gap: var(--space-4);
    align-items: center;
    margin-top: var(--space-5);
    padding: var(--space-3) 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.cl-home__next > header h2 {
    font-size: 1rem;
    line-height: 1.3;
}

.cl-home__next > header p {
    margin: 5px 0 0;
    font-size: .8125rem;
    line-height: 1.45;
}

.cl-home__next-links {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: var(--space-3);
    align-items: center;
}

.cl-home__next-links a {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-1);
    color: var(--text-primary);
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
}

.cl-home__next-links a:hover,
.cl-home__next-links a:focus-visible,
.cl-home__next-links .cl-home__next-all {
    color: var(--brand-green-dark);
}

.cl-home__tools {
    margin-top: var(--space-5);
}

.cl-home__tool-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: var(--space-2);
}

.cl-home__tool-list > a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--space-2);
    align-items: center;
    min-height: 84px;
    padding: var(--space-2);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    background: var(--surface-subtle);
    color: var(--text-primary);
    text-decoration: none;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.cl-home__tool-list > a:hover,
.cl-home__tool-list > a:focus-visible {
    border-color: rgba(57, 169, 22, .45);
    background: #fff;
}

.cl-home__tool-list > a > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 5px;
}

.cl-home__tool-list strong {
    font-size: .9375rem;
}

.cl-home__tool-list small {
    display: -webkit-box;
    overflow: hidden;
    color: var(--text-secondary);
    font-size: .8125rem;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.cl-home__tool-list b {
    color: var(--brand-green-dark);
    font-weight: 600;
    transition: transform var(--transition-fast);
}

.cl-home__tool-list > a:hover b,
.cl-home__tool-list > a:focus-visible b {
    transform: translateX(3px);
}

.cl-home__editorial {
    margin-top: var(--space-6);
}

.cl-home__editorial-layout {
    display: grid;
    grid-template-columns: minmax(0, 62fr) minmax(330px, 38fr);
    gap: 40px;
    align-items: start;
}

.cl-home__article-card {
    min-width: 0;
}

.cl-home__article-link {
    display: flex;
    height: 100%;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

.cl-home__article-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.cl-home__editorial-lead .cl-home__article-image {
    max-height: 440px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.cl-home__article-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding-top: var(--space-2);
}

.cl-home__eyebrow,
.cl-home__kicker {
    color: var(--brand-green-dark);
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cl-home__editorial-lead h3 {
    font-size: clamp(1.375rem, 2vw, 1.75rem);
    line-height: 1.2;
}

.cl-home__excerpt {
    display: -webkit-box;
    margin-top: var(--space-1);
    overflow: hidden;
    color: var(--text-secondary);
    font-size: .875rem;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.cl-home__article-link:hover h3,
.cl-home__article-link:focus-visible h3,
.cl-home__compact-article a:hover h3,
.cl-home__compact-article a:focus-visible h3 {
    color: var(--brand-green-dark);
}

.cl-home__editorial-list,
.cl-home__journey-list {
    display: flex;
    flex-direction: column;
}

.cl-home__compact-article {
    padding-bottom: var(--space-2);
    border-bottom: 1px solid var(--border-subtle);
}

.cl-home__compact-article + .cl-home__compact-article {
    padding-top: var(--space-2);
}

.cl-home__compact-article a {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: var(--space-2);
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.cl-home__compact-article .cl-home__article-image {
    width: 112px;
    height: 80px;
    aspect-ratio: 7 / 5;
}

.cl-home__compact-article h3 {
    font-size: .9375rem;
}

.cl-home__journeys {
    display: flex;
    flex-direction: column;
    gap: var(--space-7);
}

.cl-home__journey {
    min-width: 0;
}

.cl-home__journey > header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.cl-home__journey-content {
    display: grid;
    grid-template-columns: minmax(0, 65fr) minmax(260px, 35fr);
    gap: var(--space-4);
}

.cl-home__journey-lead .cl-home__article-image {
    aspect-ratio: 16 / 9;
}

.cl-home__journey-lead h3 {
    font-size: clamp(1.25rem, 1.8vw, 1.625rem);
    line-height: 1.2;
}

.cl-home__journey-list .cl-home__compact-article {
    padding-bottom: var(--space-3);
}

.cl-home__journey-list .cl-home__compact-article + .cl-home__compact-article {
    padding-top: var(--space-3);
}

.cl-home__journey-list .cl-home__compact-article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.cl-home__journey-list .cl-home__compact-article a {
    grid-template-columns: 120px minmax(0, 1fr);
}

.cl-home__journey-list .cl-home__compact-article .cl-home__article-image {
    width: 120px;
    height: 80px;
    aspect-ratio: 3 / 2;
}

@media (max-width: 1100px) {
    .cl-home__objectives,
    .cl-home__objectives--count-5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cl-home__next-links {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cl-home__editorial-layout {
        grid-template-columns: 1fr;
    }

    .cl-home__tool-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .cl-home {
        padding: var(--space-5) var(--space-3) var(--space-6);
    }

    .cl-home h1 {
        font-size: clamp(2.125rem, 5vw, 2.375rem);
    }

    .cl-home__objectives,
    .cl-home__objectives--count-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cl-home__tool-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cl-home__next,
    .cl-home__journey-content {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }

    .cl-home__next-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 560px) {
    .cl-home {
        padding: var(--space-4) var(--space-2) var(--space-6);
    }

    .cl-home h1 {
        font-size: clamp(1.875rem, 9vw, 2.125rem);
    }

    .cl-home__objectives-section > header p {
        font-size: .875rem;
    }

    .cl-home__objectives,
    .cl-home__objectives--count-5,
    .cl-home__tool-list {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: var(--space-3);
    }

    .cl-home__objective {
        min-height: 116px;
        padding: var(--space-2);
    }

    .cl-home__objective > span {
        margin-top: 12px;
    }

    .cl-home__next-links {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cl-home__section-header {
        align-items: flex-start;
        flex-direction: column;
        gap: var(--space-1);
    }

    .cl-home__compact-article a {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 12px;
    }

    .cl-home__compact-article .cl-home__article-image {
        width: 88px;
        height: 68px;
    }

    .cl-home__journeys {
        gap: var(--space-6);
    }

    .cl-home__journey > header {
        align-items: flex-start;
        flex-direction: column;
        gap: var(--space-1);
    }

    .cl-home__journey-list .cl-home__compact-article a {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .cl-home__journey-list .cl-home__compact-article .cl-home__article-image {
        width: 96px;
        height: 64px;
    }
}
