/* iccproductmyfleetcompatibility */
.pmfc-block {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff8ec;
    border: 1px solid #f5d38a;
    border-radius: 8px;
    padding: 14px 18px;
    margin-top: 16px;
}

.pmfc-icon {
    flex-shrink: 0;
    color: #fdc82f;
}

.pmfc-content {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 14px;
}

@media (max-width: 450px) {
    .pmfc-content {
        flex-wrap: wrap;
    }
    .pmfc-cta {
        align-self: flex-end;
        margin-left: auto;
    }
}

.pmfc-text {
    margin: 0;
    font-size: .88rem;
    color: #1a1a1a;
    line-height: 1.5;
    font-weight: 500;
}

.pmfc-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fdc82f;
    color: #1a1a1a;
    font-size: .82rem;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s;
    flex-shrink: 0;
}

.pmfc-cta:hover,
.pmfc-cta:focus {
    background: #e6b400;
    color: #1a1a1a;
    text-decoration: none;
    outline: none;
}
