#home-reviews {
    padding: 100px 0;
    position: relative;
}
/* Faint centre glow — exact replica of the Figma "Bg elements / BG 2" ellipse:
   a #FDF1BE circle (r=455) with a 500px-sigma layer blur, centred horizontally
   and at ~51% of the review section's height on the 1440px artboard. Stops are
   the computed disk-Gaussian falloff (peak alpha only 0.34 by design). Geometry
   is FIXED in px like the mock — the blob does not scale with the viewport. The
   layer is a fixed 3410px band (2 x the 1705px influence radius) centred on the
   51% point of the section, so the falloff reaches zero exactly at the layer's
   own edges at any viewport width — no straight-line cuts — and the wash bleeds
   gently into the neighbouring sections just like the page-level mock layer. */
#home-reviews::before {
    content: "";
    position: absolute;
    top: calc(51% - 1705px);
    height: 3410px;
    left: 0;
    right: 0;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(
        circle 1705px at 50% 50%,
        rgba(253, 241, 190, 0.339) 0%,
        rgba(253, 241, 190, 0.328) 8.3%,
        rgba(253, 241, 190, 0.298) 16.7%,
        rgba(253, 241, 190, 0.253) 25%,
        rgba(253, 241, 190, 0.201) 33.3%,
        rgba(253, 241, 190, 0.149) 41.7%,
        rgba(253, 241, 190, 0.104) 50%,
        rgba(253, 241, 190, 0.067) 58.3%,
        rgba(253, 241, 190, 0.041) 66.7%,
        rgba(253, 241, 190, 0.023) 75%,
        rgba(253, 241, 190, 0.012) 83.3%,
        rgba(253, 241, 190, 0.006) 91.7%,
        rgba(253, 241, 190, 0) 100%
    );
}
#home-reviews .container {
    max-width: 938px;
}
#home-reviews .topic {
    margin-left: auto;
    margin-right: auto;
}
#home-reviews .title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    line-height: 50px;
    max-width: 672px;
    margin: 16px auto 0;
}
#home-reviews .reviews {
    margin: calc(50px - 10px) -10px 0;
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 20px);
}
#home-reviews .reviews .review-card {
    flex-basis: calc(50% - 20px);
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: calc(991px + 30px)) {

    #home-reviews {
        padding: 50px 0;
    }
    #home-reviews .title {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 768px) {

    #home-reviews {
        padding: 35px 0;
    }
    #home-reviews .title {
        font-size: 24px;
        line-height: 30px;
    }
    #home-reviews .reviews {
        margin-top: calc(20px - 10px);
    }
}

@media (max-width: 600px) {

    .review-card .head,
    .review-card .bottom_panel {
        flex-direction: column;
        align-items: flex-start;
    }
    .review-card .head .created_at,
    .review-card .bottom_panel .to_company{
        margin-top: 10px;
    }
    #home-reviews .reviews {
        margin-top: calc(20px - 5px);
        margin-left: -5px;
        margin-right: -5px;
        width: calc(100% + 10px);
    }
    #home-reviews .reviews .review-card {
        flex-basis: calc(50% - 10px);
        margin: 5px;
        padding: 15px;
    }
}

@media (max-width: 480px) {

    #home-reviews {
        padding: 25px 0;
    }
    .review-card .head,
    .review-card .bottom_panel {
        flex-direction: row;
        align-items: center;
    }
    .review-card .head .created_at,
    .review-card .bottom_panel .to_company{
        margin-top: 0;
    }
    #home-reviews .reviews {
        flex-direction: column;
        align-items: center;
    }
    #home-reviews .reviews .review-card {
        flex-basis: auto;
        margin: 5px 0;
        max-width: 331px;
        padding: 20px;
    }
}
