.hr-training-locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* CARD */
.hr-location-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    padding: 16px 16px 56px; /* extra bottom space for icons */
    position: relative;
}

/* LOGO */
.hr-location-logo img {
    width: 100%;
    height: auto;
}

/* TITLE */
.hr-location-title {
    background: #e21b1b;
    color: #fff;
    font-weight: 700;
    padding: 6px 10px;
    margin: 10px 0;
    text-transform: uppercase;
    font-size: 14px;
}

/* META */
.hr-location-meta p {
    margin: 4px 0;
    font-size: 14px;
}

/* ICON WRAPPER */
.hr-location-actions {
    position: absolute;
    bottom: 14px;
    left: 16px;          /* move to left */
    display: flex;
    gap: 14px;
}

/* ICON BASE */
.hr-icon {
    width: 30px;      /* bigger icons */
    height: 30px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-indent: -9999px;
    cursor: pointer;
}

/* EMAIL ICON (FIRST) */
.hr-icon.hr-email {
    background-image: url('../icons/icon-email.svg');
}

/* MAP ICON (SECOND) */
.hr-icon.hr-map {
    background-image: url('../icons/icon-map.svg');
}

/* ? WhatsApp icon */
.hr-icon.hr-whatsapp {
    background-image: url('../icons/whatsapp.svg');
    color: #25D366; /* WhatsApp official green */
}

/* HOVER EFFECT */
.hr-icon:hover {
    transform: scale(1.1);
    opacity: 0.9;
}
