/* ── PetConnect Reassurance – Front Styles ── */
.pc-reassurance {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 24px;
    padding: 18px 0;
    border-top: 1px solid #e5e5e5;
}
.pc-reassurance__item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 200px;
}
.pc-reassurance__item .feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    color: #2f6f4e;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pc-reassurance__item .feature-icon svg {
    width: 100%;
    height: 100%;
}
.pc-reassurance__item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
}
.pc-reassurance__item span {
    display: block;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin-top: 2px;
}

.pc-reassurance {
	display:grid;
    grid-template-columns: 1fr 1fr; 
    gap: 10px;
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px dashed #75bbc6;
    border-radius: 8px;
    background: #f6feff;
}

.pc-reassurance__item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 calc(50% - 10px);
    min-width: 160px;
}

.pc-reassurance__item svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    color: var(--e-global-color-secondary, #023047);
}

.pc-reassurance__item div {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.pc-reassurance__item strong {
    font-size: 0.82rem;
    font-weight: 600;
    color: #222;
}

.pc-reassurance__item span {
    font-size: 0.75rem;
    color: #666;
}

@media (max-width: 767px) {
    .pc-reassurance__item {
        flex: 1 1 100%;
    }
    .pc-reassurance {
        grid-template-columns: 1fr !important;
    }
}
