.terract-index-pastorale {
    --ocre: #b77722;
    --ocre-dark: #70420d;
    --ocre-soft: #fff4e2;
    --ink: #102033;
    margin: 0 0 42px;
}

.terract-index-pastorale-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 18px;
}

.terract-index-pastorale-head span {
    display: inline-block;
    margin-bottom: 5px;
    color: var(--ocre);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.terract-index-pastorale-head h2 {
    margin: 0;
    color: var(--ocre-dark);
    font-size: 26px;
    line-height: 1.1;
    font-weight: 950;
    text-transform: uppercase;
}

.terract-index-pastorale-head p {
    margin: 6px 0 0;
    color: #75614a;
    font-size: 14px;
    font-weight: 700;
}

.terract-index-pastorale-head a {
    color: var(--ocre);
    text-decoration: none;
    font-size: 14px;
    font-weight: 950;
    white-space: nowrap;
}

.terract-index-pastorale-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 20px;
}

.terract-pastorale-card {
    background: #ffffff;
    border: 1px solid #f3dfbd;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(112, 66, 13, .08);
    transition: .25s ease;
}

.terract-pastorale-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(112, 66, 13, .13);
}

.terract-pastorale-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    height: 260px;
    padding: 12px;
    background: linear-gradient(135deg, var(--ocre-soft), #ffffff);
    overflow: hidden;
}

.terract-pastorale-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.terract-pastorale-content {
    padding: 22px;
}

.terract-pastorale-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.terract-pastorale-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    color: var(--ocre-dark);
    background: rgba(183, 119, 34, .14);
}

.terract-pastorale-content h3 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.22;
    font-weight: 950;
}

.terract-pastorale-content h3 a {
    color: var(--ink);
    text-decoration: none;
}

.terract-pastorale-content h3 a:hover {
    color: var(--ocre);
}

.terract-pastorale-content p {
    margin: 0 0 18px;
    color: #75614a;
    font-size: 15px;
    line-height: 1.55;
}

.terract-pastorale-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.terract-pastorale-bottom small {
    color: #827465;
    font-size: 12px;
    font-weight: 800;
}

.terract-pastorale-bottom a {
    color: var(--ocre);
    text-decoration: none;
    font-size: 13px;
    font-weight: 950;
}

.terract-pastorale-featured {
    background:
        radial-gradient(circle at top right, rgba(183,119,34,.14), transparent 38%),
        #ffffff;
}

.terract-pastorale-featured .terract-pastorale-image {
    min-height: 340px;
    height: 340px;
}

.terract-pastorale-featured .terract-pastorale-content h3 {
    font-size: 28px;
    line-height: 1.12;
}

@media (min-width: 1101px) {
    .terract-index-pastorale-grid .terract-pastorale-card:nth-child(n+3) {
        display: grid;
        grid-template-columns: 220px 1fr;
    }

    .terract-index-pastorale-grid .terract-pastorale-card:nth-child(n+3) .terract-pastorale-image {
        height: 100%;
        min-height: 190px;
    }
}

@media (max-width: 1050px) {
    .terract-index-pastorale-grid {
        grid-template-columns: 1fr 1fr;
    }

    .terract-pastorale-featured {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .terract-index-pastorale-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .terract-index-pastorale-head h2 {
        font-size: 22px;
    }

    .terract-index-pastorale-grid {
        grid-template-columns: 1fr;
    }

    .terract-pastorale-image,
    .terract-pastorale-featured .terract-pastorale-image {
        min-height: 240px;
        height: 240px;
    }

    .terract-pastorale-featured .terract-pastorale-content h3 {
        font-size: 24px;
    }
}
