.st3m-sedes-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
}

.st3m-content-card {
    position: relative;
    display: grid;
    grid-template-columns: 38% 1fr;
    gap: 34px;
    align-items: stretch;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
    border-left: 6px solid #909946;
    padding: 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.st3m-content-card:hover {
    transform: scale(1.015);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.st3m-content-card__image {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border-radius: 16px;
    overflow: hidden;
}

.st3m-content-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.st3m-content-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.st3m-content-card__title {
    margin: 0 0 10px;
    color: #263a22;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.15;
}

.st3m-content-card__subtitle {
    margin: 0 0 12px;
    color: #7c7f85;
    font-size: 16px;
    font-weight: 600;
}

.st3m-content-card__description {
    margin: 0 0 16px;
    color: #5f6470;
    font-size: 16px;
    line-height: 1.55;
}

.st3m-content-card__address {
    margin: 0 0 8px;
    color: #5f6470;
    font-size: 17px;
    line-height: 1.5;
}

.st3m-content-card__location {
    margin: 0 0 24px;
    color: #7c7f85;
    font-size: 16px;
    font-weight: 600;
}

.st3m-content-card__info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin: 8px 0 28px;
}

.st3m-content-card__info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding-right: 18px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    min-width: 0;
}

.st3m-content-card__info-item:last-child {
    border-right: none;
}

.st3m-content-card__icon {
    color: #909946;
    font-size: 24px;
    line-height: 1;
    margin-top: 2px;
}

.st3m-content-card__info-item strong {
    display: block;
    color: #1f2c44;
    font-size: 15px;
    margin-bottom: 5px;
}

.st3m-content-card__info-item a,
.st3m-content-card__info-item span {
    color: #064b99;
    font-size: 15px;
    line-height: 1.45;
    text-decoration: none;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.st3m-content-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 14px 28px;
    background: linear-gradient(135deg, #e2b735, #8f993d);
    color: #ffffff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.st3m-content-card__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(143, 153, 61, 0.28);
    color: #ffffff;
}

/*
|--------------------------------------------------------------------------
| Variante compacta - Aliados
|--------------------------------------------------------------------------
*/

.st3m-aliados-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    width: 100%;
    align-items: stretch;
}

.st3m-content-card--compact {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-left: none;
    overflow: hidden;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.st3m-content-card--compact:hover {
    transform: translateY(-6px) scale(1.015);
}

.st3m-content-card--compact .st3m-content-card__image {
    width: 100%;
    height: 180px;
    min-height: 180px;
    max-height: 180px;
    border-radius: 0;
    overflow: hidden;
}

.st3m-content-card--compact .st3m-content-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}

.st3m-content-card--compact .st3m-content-card__title {
    font-size: 26px;
    margin-bottom: 8px;
}

.st3m-content-card--compact .st3m-content-card__subtitle {
    margin-bottom: 14px;
}

.st3m-content-card--compact .st3m-content-card__description {
    margin-bottom: 18px;
}

.st3m-content-card--compact .st3m-content-card__info-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 22px;
}

.st3m-content-card--compact .st3m-content-card__info-item {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-right: 0;
    padding-bottom: 12px;
}

.st3m-content-card--compact .st3m-content-card__info-item:last-child {
    border-bottom: none;
}

.st3m-content-card--compact .st3m-content-card__button {
    width: 100%;
    margin-top: auto;
}

/*
|--------------------------------------------------------------------------
| Responsive compact
|--------------------------------------------------------------------------
*/

@media (max-width: 1200px) {

    .st3m-aliados-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .st3m-aliados-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 980px) {
    .st3m-content-card {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .st3m-content-card__image {
        min-height: 260px;
    }

    .st3m-content-card__info-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .st3m-content-card__info-item {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding-bottom: 14px;
    }

    .st3m-content-card__info-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 1200px) {

    .st3m-content-card__info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

     .st3m-content-card__info-item:nth-child(2) {
        border-right: none;
    }

}

@media (max-width: 640px) {
    .st3m-content-card {
        padding: 18px;
        border-radius: 18px;
    }

    .st3m-content-card__title {
        font-size: 26px;
    }

    .st3m-content-card__image {
        min-height: 220px;
    }

    .st3m-content-card__info-grid {
    grid-template-columns: 1fr;
    }

    .st3m-content-card__info-item {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding-right: 0;
        padding-bottom: 14px;
    }

    .st3m-content-card__info-item:last-child {
        border-bottom: none;
    }
}