/* "Les autres VPS FirstHeberg" card grid — shared by vpc_related_offers.php */
.vpc_related .agent_ia_section_head
{
    margin-bottom: 30px;
}
.vpc_related_grid
{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.vpc_related_card
{
    flex: 1 1 280px;
    max-width: 386px;
    background: #FFF;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    text-decoration: none;
    color: #111;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.vpc_related_card:hover,
.vpc_related_card:focus
{
    border-color: #4464DF;
    box-shadow: 0 4px 16px rgba(68, 100, 223, 0.15);
}
.vpc_related_card:focus-visible
{
    outline: 2px solid #4464DF;
    outline-offset: 2px;
}
.vpc_related_icon
{
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #EAF0FE;
    color: #4464DF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.vpc_related_title
{
    font-family: usb;
    font-size: 17px;
    font-weight: 600;
    color: #111;
}
.vpc_related_desc
{
    margin: 0;
    color: #595959;
    font-size: 14px;
    line-height: 1.55;
}
.vpc_related_link
{
    margin-top: auto;
    font-family: usb;
    font-size: 14px;
    font-weight: 600;
    color: #4464DF;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.vpc_related_card_primary
{
    background: #4464DF;
    border-color: #4464DF;
}
.vpc_related_card_primary .vpc_related_icon
{
    background: rgba(255, 255, 255, 0.18);
    color: #FFF;
}
.vpc_related_card_primary .vpc_related_title,
.vpc_related_card_primary .vpc_related_desc,
.vpc_related_card_primary .vpc_related_link
{
    color: #FFF;
}
@media (max-width: 840px)
{
    .vpc_related_card { max-width: 100%; }
}
