.sky-pfc-wrap,
.sky-pfc-wrap * {
    box-sizing: border-box;
}

.sky-pfc-wrap {
    width: 100%;
}

.sky-pfc-grid {
    display: grid;
    width: 100%;
}

.sky-pfc-card {
    display: block;
    width: 100%;
    text-decoration: none;
    overflow: hidden;
    transition-property: transform, box-shadow, border-color, background-color;
    transition-timing-function: cubic-bezier(.2,.7,.2,1);
    will-change: transform;
}

.sky-pfc-card:hover,
.sky-pfc-card:focus,
.sky-pfc-card:visited {
    text-decoration: none;
}

.sky-pfc-card:focus-visible {
    outline: 3px solid rgba(19, 47, 149, .35);
    outline-offset: 3px;
}

.sky-pfc-card-inner {
    display: flex;
    width: 100%;
    height: 100%;
}

.sky-pfc-graphic {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--sky-pfc-graphic-bg, #EEF3FF);
}

.sky-pfc-graphic-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-property: transform;
    transition-timing-function: cubic-bezier(.2,.7,.2,1);
}

.sky-pfc-graphic img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
}

.sky-pfc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.sky-pfc-icon i,
.sky-pfc-icon svg {
    display: block;
}

.sky-pfc-content {
    flex: 1 1 auto;
    min-width: 0;
    align-self: center;
}

.sky-pfc-title {
    margin: 0;
    padding: 0;
}

.sky-pfc-description {
    margin: 0;
    padding: 0;
}

.sky-pfc-description p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .sky-pfc-card {
        min-width: 0;
    }

    .sky-pfc-title,
    .sky-pfc-description {
        overflow-wrap: anywhere;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sky-pfc-card,
    .sky-pfc-graphic-inner {
        transition-duration: 0.01ms !important;
    }

    .sky-pfc-card:hover {
        transform: none !important;
    }
}
