.ps-hero-cards {
    display: flex;
	justify-content: center;
    gap: 24px;
    width: 100%;
}

.platform-hero .ps-card {
    opacity: 0;
	pointer-events: none;
}

.ps-hero-cards .ps-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-radius: 32px;
    overflow: hidden;
    background: #fff;
    border: 2px solid #00B1E1;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.25s ease, box-shadow 0.25s ease;
	flex: 0 0 222px;
    width: 222px;
    height: 270px;
}

.ps-hero-cards a.ps-card:hover {
    opacity: 0.85;
    box-shadow: 0 8px 24px rgb(35 70 79 / 35%);
}

.ps-hero-cards .ps-card--highlight {
    background: #f0ebf8;
    border-color: #d4c4f0;
}

.ps-hero-cards .ps-card__body {
    padding: 24px 18px 0;
    text-align: center;
	flex-shrink: 0;
}

.ps-hero-cards .ps-card__title {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    color: #00647F;
	min-height: calc(1.2em * 2);
}

.ps-hero-cards .ps-card__media {
    padding: 24px 18px;
    margin-top: auto;
	flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-hero-cards .ps-card__media img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}


@media (max-width: 1024px) {
    .ps-hero-cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        max-width: calc(222px * 2 + 24px);
        margin: 0 auto;
    }
	
    .ps-hero-cards .ps-card {
        min-height: 270px;
		overflow: hidden;
    }
}

@media (max-width: 600px) {
	.ps-hero-cards {
		gap: 16px;
		max-width: calc(163px * 2 + 24px);
	}
	
	.ps-hero-cards .ps-card {
        flex: 0 0 163px;
        width: 163px;
        height: 204px;
        min-height: 204px;
    }
	
	.ps-card__title {
		font-size: 16px;
		margin-bottom: 6px;
	}

    .ps-hero-cards .ps-card__body {
        padding: 16px 16px 0;
        flex-shrink: 0;
    }

    .ps-hero-cards .ps-card__media {
        padding: 0 0 16px;
        margin-top: auto;
        flex: 1;
        min-height: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ps-hero-cards .ps-card__media img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
    }
	.ps-hero-cards .ps-card__title {
		min-height: calc(1.2em * 3);
	}
}