.stakeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    /* justify-items: stretch;
    align-items: stretch; */
}

.stakeholder-card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden; /* makes rounded corners apply to child img */
}

.stakeholder-img img {
    width: 100%;
    height: 250px;
    object-fit: cover; /* ensures image covers area */
    display: block;
}

.stakeholder-img {
    flex: 1; /* image takes remaining vertical space */
}

.stakeholder-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    gap: 10px;
}

.stakeholder-link {
    display: inline-flex;   /* makes it shrink to its content */
    align-items: center;    /* vertically center text + icon */
    justify-content: center;/* center content inside */
    gap: 10px;
    color: var(--color-text-primary);
}

.stakeholder-chevrons i {
    margin-left: -6px;
}
