.pfes-wrap {
    font-family: inherit;
}
.pfes-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.pfes-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9a9a94;
    margin-bottom: 6px;
}
.pfes-heading {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
}
.pfes-heading-highlight {
    color: #dc2626;
    font-style: italic;
}
.pfes-cta {
    color: #dc2626;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}
.pfes-cta:hover {
    color: #9a1c1c;
}
.pfes-arrow {
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.2s ease;
}
.pfes-card-link:hover .pfes-arrow,
.pfes-cta:hover .pfes-arrow {
    transform: translateX(3px);
}

.pfes-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}
.pfes-viewport {
    overflow: hidden;
    flex: 1 1 auto;
    width: 100%;
}
.pfes-track {
    display: flex;
    gap: 20px;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.pfes-card {
    box-sizing: border-box;
    flex: 0 0 auto;
    border-radius: 10px;
    overflow: hidden;
    background: #f2efe9;
    display: flex;
    flex-direction: column;
}
.pfes-photo {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #e4e1dc;
    overflow: hidden;
}
.pfes-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pfes-photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
    font-size: 13px;
    color: #9a9790;
}
.pfes-footer {
    padding: 16px 18px 20px;
}
.pfes-card-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #dc2626;
    margin-bottom: 6px;
}
.pfes-card-title {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 10px;
}
.pfes-card-link {
    display: inline-block;
    color: #dc2626;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}
.pfes-card-link:hover {
    color: #9a1c1c;
}

.pfes-nav {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    z-index: 2;
}
.pfes-nav:hover {
    background: #dc2626;
    color: #ffffff;
    transform: scale(1.06);
}
.pfes-nav:active {
    transform: scale(0.96);
}

@media (max-width: 600px) {
    .pfes-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .pfes-nav {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }
}
