.terract-home-sections {
    display: grid;
    grid-template-columns: 1.15fr 1.15fr .9fr;
    gap: 24px;
    margin: 0 0 38px;
}

.terract-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.terract-section-head h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
    color: #073f28;
    text-transform: uppercase;
}

.terract-section-head a {
    color: #0b8f45;
    font-weight: 800;
    text-decoration: none;
    font-size: 14px;
}

.terract-news-layout {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 16px;
}

.terract-main-news {
    min-height: 330px;
    border-radius: 16px;
    padding: 24px;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.terract-main-news span {
    width: max-content;
    background: #0b8f45;
    padding: 7px 10px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.terract-main-news h3 {
    color: #fff;
    font-size: 24px;
    line-height: 1.15;
    margin: 12px 0;
    font-weight: 900;
}

.terract-main-news small {
    color: rgba(255,255,255,.9);
    font-weight: 700;
}

.terract-side-news {
    display: grid;
    gap: 14px;
}

.terract-side-news-item {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    min-height: 96px;
    box-shadow: 0 10px 25px rgba(0,0,0,.07);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.terract-side-news-item strong {
    color: #102033;
    font-size: 15px;
    line-height: 1.3;
}

.terract-side-news-item small {
    color: #7c8794;
    margin-top: 8px;
    font-size: 12px;
}

.terract-focus-card {
    display: grid;
    grid-template-columns: 1fr 170px;
    border-radius: 16px;
    overflow: hidden;
    min-height: 330px;
    background: #062b44;
}

.terract-focus-image {
    background-size: cover;
    background-position: center;
    padding: 28px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.terract-focus-image h3 {
    color: #fff;
    font-size: 25px;
    line-height: 1.2;
    margin: 0 0 10px;
    font-weight: 900;
}

.terract-focus-image p {
    color: rgba(255,255,255,.92);
    margin: 0 0 16px;
    line-height: 1.5;
}

.terract-focus-image a {
    background: #0b8f45;
    color: #fff;
    width: max-content;
    padding: 11px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
}

.terract-focus-stats {
    background: #062b44;
    color: #fff;
    display: grid;
}

.terract-focus-stats div {
    padding: 18px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.terract-focus-stats strong {
    display: block;
    font-size: 20px;
    font-weight: 900;
}

.terract-focus-stats span {
    font-size: 12px;
    color: rgba(255,255,255,.78);
}

.terract-rubriques-list {
    display: grid;
    gap: 10px;
}

.terract-rubrique-item {
    min-height: 54px;
    border-radius: 10px;
    padding: 0 14px;
    color: #fff;
    text-decoration: none;
    display: grid;
    grid-template-columns: 38px 1fr 20px;
    align-items: center;
    font-weight: 900;
    overflow: hidden;
}

.terract-rubrique-item span {
    font-size: 22px;
}

.terract-rubrique-item strong {
    font-size: 15px;
}

.terract-rubrique-item em {
    font-style: normal;
    font-size: 26px;
    text-align: right;
}

.terract-rubrique-item.green {
    background: linear-gradient(90deg, #168a3f, #0a6735);
}

.terract-rubrique-item.blue {
    background: linear-gradient(90deg, #0086a8, #06589e);
}

.terract-rubrique-item.purple {
    background: linear-gradient(90deg, #7142b8, #315ca5);
}

.terract-main-news-btn {
    width: max-content;
    margin-top: 18px;
    background: #ffffff;
    color: #064527;
    text-decoration: none;
    font-weight: 900;
    border-radius: 12px;
    padding: 13px 20px;
}

.terract-main-news-btn:hover {
    background: #f3f7f5;
}

@media (max-width: 1150px) {
    .terract-home-sections {
        grid-template-columns: 1fr;
    }

    .terract-focus-card {
        grid-template-columns: 1fr 160px;
    }
}

@media (max-width: 700px) {
    .terract-news-layout,
    .terract-focus-card {
        grid-template-columns: 1fr;
    }

    .terract-focus-stats {
        grid-template-columns: 1fr 1fr;
    }

    .terract-main-news {
        min-height: 280px;
    }
}