/* ---- Hero Section ---- */
.yp-hero {
    background: #f8fafc;
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.yp-hero .hero-shape {
    display: block;
    position: absolute;
    border-radius: 50%;
    filter: blur(45px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.35;
}

.yp-hero .hero-shape-1 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, rgba(99, 102, 241, 0.05) 100%);
    top: -60px;
    right: 8%;
    animation: floatBubble 12s ease-in-out infinite;
}

.yp-hero .hero-shape-2 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, rgba(168, 85, 247, 0.05) 100%);
    bottom: -40px;
    right: 22%;
    animation: floatBubble 16s ease-in-out infinite alternate;
}

.yp-hero .hero-shape-3 {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.35) 0%, rgba(59, 130, 246, 0.05) 100%);
    top: 35%;
    left: 4%;
    animation: floatBubble 10s ease-in-out infinite alternate-reverse;
}

@keyframes floatBubble {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) translateX(10px) rotate(180deg);
    }

    100% {
        transform: translateY(0px) translateX(0px) rotate(360deg);
    }
}

@keyframes curveFlow {
    to {
        stroke-dashoffset: -40;
    }
}

.yp-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.12;
    max-width: 620px;
}

.yp-hero h1 span {
    color: var(--web-panel-color, #e63946);
}

.yp-hero p.lead {
    color: #555;
    font-size: 1.03rem;
    margin-bottom: 28px;
    max-width: 610px;
}

.yp-hero-search {
    display: flex;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ececec;
    box-shadow: 0 10px 30px rgba(26, 26, 46, 0.08);
    overflow: hidden;
    max-width: 620px;
}

.yp-hero-search input {
    border: none;
    outline: none;
    padding: 14px 20px;
    flex: 1;
    font-size: 0.95rem;
    background: transparent;
}

.yp-hero-search button {
    background: var(--web-panel-color, #e63946);
    border: none;
    color: #fff;
    padding: 14px 24px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 0;
    transition: opacity 0.2s;
}

.yp-hero-search button:hover {
    opacity: 0.85;
}

.yp-hero-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.yp-hero-img-wrap .hero-deco {
    display: none;
}

.yp-hero-img-wrap .hero-deco-1 {
    width: 180px;
    height: 180px;
    top: -20px;
    right: -20px;
    opacity: 0.15;
}

.yp-hero-img-wrap .hero-deco-2 {
    width: 100px;
    height: 100px;
    bottom: 10px;
    left: 0;
    opacity: 0.1;
}

.yp-hero-img-wrap img {
    position: relative;
    z-index: 2;
    border-radius: 8px;
    max-height: 360px;
    object-fit: cover;
}


/* ---- Section Shared ---- */
.yp-section {
    padding: 55px 0;
}

.yp-section-label {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.yp-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.yp-section-title span {
    color: var(--web-panel-color, #e63946);
}

/* ---- Feature Cards ---- */
.yp-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 22px;
    box-shadow: 0 10px 30px rgba(71, 85, 105, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
}

.yp-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(71, 85, 105, 0.15);
}

.yp-feature-card .icon-wrap {
    width: 64px;
    height: 64px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.6rem;
    color: var(--web-panel-color, #e63946);
}

.yp-feature-card h5 {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.yp-feature-card p {
    font-size: 0.88rem;
    color: #777;
    margin: 0;
}

/* ---- Claim Section ---- */
.yp-claim-section {
    background: #f8fafc;
}

.yp-claim-section .claim-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(71, 85, 105, 0.08);
    max-width: 340px;
}

.yp-claim-section .claim-card .biz-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}

.yp-claim-section .claim-card .biz-name {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a2e;
}

.yp-claim-section .claim-card .biz-addr {
    font-size: 0.82rem;
    color: #888;
}

.yp-claim-section .claim-card .stars i {
    color: #f5a623;
    font-size: 0.85rem;
}

.yp-claim-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
}

.yp-claim-section h2 span {
    color: var(--web-panel-color, #e63946);
}

.yp-claim-section ul li {
    padding: 6px 0;
    font-size: 0.92rem;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.yp-claim-section ul li i {
    color: var(--web-panel-color, #e63946);
    margin-top: 3px;
}

/* ---- Steps Section ---- */
.yp-steps-section {
    background: #fff;
}

.yp-step-card {
    text-align: center;
    padding: 30px 20px;
}

.yp-step-card .step-icon {
    width: 72px;
    height: 72px;
    background: var(--web-panel-color, #e63946);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
}

.yp-step-card h5 {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.yp-step-card p {
    font-size: 0.88rem;
    color: #777;
}

/* ---- Elevate Section ---- */
.yp-elevate-section {
    background: #fff;
    padding: 80px 0;
}

/* Big bold title */
.elv-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.15;
    margin-bottom: 36px;
    font-family: "Outfit", sans-serif;
}

/* Feature list */
.elv-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 36px;
}

.elv-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.elv-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 1rem;
    flex-shrink: 0;
}

.elv-feature-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 3px;
}

.elv-feature-desc {
    font-size: 0.83rem;
    color: #777;
    line-height: 1.55;
}

/* Right image wrapper */
.elv-img-wrap {
    position: relative;
    border-radius: 18px;
    overflow: visible;
}

.elv-main-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    position: relative;
    z-index: 1;
}

/* Decorative blobs — match the pink circles in the reference image */
.elv-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.elv-blob-tl {
    width: 100px;
    height: 100px;
    top: -25px;
    left: -25px;
    background: rgba(var(--web-panel-rgb, 180, 30, 50), 0.12);
}

.elv-blob-br {
    width: 75px;
    height: 75px;
    bottom: 30px;
    right: -20px;
    background: rgba(var(--web-panel-rgb, 180, 30, 50), 0.10);
}

@media (max-width: 991px) {
    .elv-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .elv-title {
        font-size: 1.7rem;
    }
}

/* ============================================================
       FIND THE RIGHT PLACE — Full bleed, image left, card right
    ============================================================ */
.yp-reliable-section {
    background: #fff;
    padding: 50px 0;
    overflow: hidden;
    position: relative;
}

.rlb-wrap {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Left image — absolute, fills the left 62% */
.rlb-img-col {
    position: absolute;
    top: 0;
    left: 0;
    width: 62%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.rlb-img-col::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0) 85%, #fff 100%),
        linear-gradient(to bottom, rgba(255, 255, 255, 0) 75%, #fff 100%);
    pointer-events: none;
}

.rlb-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center left;
}

/* Right floating white card with pinkish-red border (height reduced) */
.rlb-content-col {
    position: relative;
    width: 100%;
    max-width: 760px;
    margin-right: 0;
    background: #fff;
    border-radius: 32px 0 0 32px;
    border: 3.5px solid rgba(139, 32, 53, 0.4);
    border-right: none;
    box-shadow: -15px 25px 60px rgba(0, 0, 0, 0.06);
    padding: 40px 56px 36px 48px;
    z-index: 3;
}

.rlb-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.25;
    margin-bottom: 24px;
    font-family: "Outfit", sans-serif;
}

.rlb-title span {
    color: #8b2035;
    display: inline;
    font-weight: 800;
}

/* 3 feature mini-cards in a row */
.rlb-features {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.rlb-feat-card {
    flex: 1;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 18px 16px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.02);
}

.rlb-feat-card:hover {
    border-color: #8b2035;
    box-shadow: 0 12px 30px rgba(139, 32, 53, 0.07);
    transform: translateY(-4px);
}

.feat-svg-icon {
    width: 24px;
    height: 24px;
    stroke: #8b2035;
    margin-bottom: 12px;
    display: block;
}

.rlb-feat-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.rlb-feat-desc {
    font-size: 0.78rem;
    color: #718096;
    line-height: 1.4;
}

/* Custom high-fidelity button */
.rlb-btn {
    background-color: #8b2035 !important;
    border: none !important;
    color: #fff !important;
    padding: 12px 38px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 14px rgba(139, 32, 53, 0.25) !important;
    display: inline-block !important;
    text-decoration: none !important;
}

.rlb-btn:hover {
    background-color: #70192a !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(139, 32, 53, 0.4) !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .rlb-wrap {
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 30px 15px;
    }

    .rlb-img-col {
        position: relative;
        width: 100%;
        height: 320px;
        border-radius: 24px;
        margin-bottom: 24px;
    }

    .rlb-img-col::after {
        border-radius: 24px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 70%, #fff 100%);
    }

    .rlb-img-col img {
        border-radius: 24px;
    }

    .rlb-content-col {
        max-width: 100%;
        margin-right: 0;
        padding: 36px 28px;
        border-radius: 24px;
        border: 2.5px solid rgba(139, 32, 53, 0.4);
    }

    .rlb-title {
        font-size: 2.1rem;
        margin-bottom: 28px;
    }

    .rlb-features {
        flex-direction: column;
        gap: 16px;
    }

    .rlb-feat-card {
        padding: 20px;
    }
}

/* ============================================================
       WHY CHOOSE LOCALFYND — Full width card with city bottom
    ============================================================ */
.wc-section {
    background: #fff;
    padding: 40px 0 80px;
}

/* Outer wrapper — full page width, white bg */
.wc-outer {
    background: #fff;
    padding: 40px 0;
    position: relative;
}

/* Inner card — slight shadow, white, rounded */
.wc-card {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    margin: 0 40px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.wc-wrap {
    display: flex;
    align-items: flex-start;
    padding: 56px 60px 170px 60px;
    /* leaves room for the skyline */
}

/* Left: 42% */
.wc-left {
    flex: 0 0 42%;
    padding-right: 60px;
}

.wc-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #8b2035;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.wc-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.15;
    margin-bottom: 20px;
    font-family: "Outfit", sans-serif;
}

.wc-title span {
    color: #8b2035;
}

.wc-desc {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.65;
}

/* Right: 58% — 2×2 grid of bordered stat boxes */
.wc-right {
    flex: 0 0 58%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
    /* vertical and horizontal gap */
}

/* Each stat has no border or background card */
.wc-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.wc-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.wc-stat-icon.blue {
    background: #eff6ff;
    color: #3b82f6;
}

.wc-stat-icon.pink {
    background: #fdf2f8;
    color: #db2777;
}

.wc-stat-icon.yellow {
    background: #fffbeb;
    color: #f59e0b;
}

.wc-stat-icon.green {
    background: #ecfdf5;
    color: #10b981;
}

.wc-stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
    font-family: "Outfit", sans-serif;
}

.wc-stat-lbl {
    font-size: 0.72rem;
    font-weight: 700;
    color: #718096;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 6px;
}

/* City skyline — pinned to bottom of card, taller so it's visible */
.wc-city-img {
    position: absolute;
    bottom: -60px;

    width: 106%;
    display: block;
    height: 240px;
    object-fit: cover;
    object-position: bottom center;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 991px) {
    .wc-wrap {
        flex-direction: column;
        padding: 48px 32px 140px;
    }

    .wc-left {
        flex: 0 0 100%;
        padding-right: 0;
        margin-bottom: 36px;
    }

    .wc-right {
        flex: 0 0 100%;
        width: 100%;
        gap: 28px 20px;
    }

    .wc-title {
        font-size: 2.0rem;
    }

    .wc-card {
        margin: 0 16px;
        border-radius: 24px;
    }
}

@media (max-width: 575px) {
    .wc-wrap {
        padding: 36px 20px 120px;
    }

    .wc-right {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
    }

    .wc-stat-num {
        font-size: 1.85rem;
    }

    .wc-card {
        margin: 0 12px;
        border-radius: 18px;
    }

    .wc-city-img {
        height: 100px;
        bottom: -8px;
        left: -3%;
        width: 106%;
    }
}


/* ---- Testimonials (Light Theme - see style.css for full styles) ---- */
.yp-testimonials {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    padding: 55px 0;
    position: relative;
    overflow: hidden;
}

.yp-testimonials .section-label-light {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
    border: 1px solid #e2e8f0;
}

.yp-testimonials h2 {
    font-family: 'Outfit', sans-serif !important;
    color: #0F172A;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.yp-testimonials .testimonials-sub {
    font-size: 14.5px;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
}

.yp-testimonial-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.yp-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.03) !important;
}

.yp-testimonial-card p {
    color: #334155;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: normal;
    font-weight: 500;
}

.yp-testimonial-card .reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #F1F5F9;
}

.yp-testimonial-card .reviewer img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
}

.yp-testimonial-card .reviewer .name {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700;
    color: #0F172A;
    font-size: 13.5px;
    display: block;
    text-decoration: none !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.yp-testimonial-card .reviewer .role {
    font-size: 11px;
    color: #64748B;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.yp-testimonial-card .stars i {
    color: #FBBF24;
    font-size: 12px;
    margin-right: 2px;
}

/* ---- CTA Banner ---- */
.yp-cta-banner {
    background: #f8fafc;
    padding: 55px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.yp-cta-banner .cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

.yp-cta-banner .cta-shape-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, rgba(59, 130, 246, 0.05) 100%);
    top: -40px;
    left: 8%;
    animation: floatBubble 14s ease-in-out infinite alternate;
}

.yp-cta-banner .cta-shape-2 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.35) 0%, rgba(99, 102, 241, 0.05) 100%);
    bottom: -30px;
    right: 8%;
    animation: floatBubble 10s ease-in-out infinite alternate-reverse;
}

.yp-cta-banner-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(71, 85, 105, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
    border: 1px solid #e2e8f0;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.yp-cta-banner h2 {
    color: #1a1a2e;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.yp-cta-banner p {
    color: #64748b;
    font-size: 1.05rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.yp-cta-banner .btn-cta {
    background: var(--web-panel-color, #8b2035);
    color: #ffffff;
    border: 1px solid var(--web-panel-color, #8b2035);
    padding: 11px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease, border-color 0.2s ease;
    box-shadow: none;
    letter-spacing: 0.2px;
}

.yp-cta-banner .btn-cta:hover {
    background: #fff;
    border-color: var(--web-panel-color, #8b2035);
    color: var(--web-panel-color, #8b2035);
    transform: none;
    box-shadow: none;
}

/* ---- Dynamic Sections ---- */
.yp-categories-section {
    background: #fff;
}

.yp-categories-section .cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    transition: all 0.2s;
    margin: 6px;
}

.yp-categories-section .cat-chip:hover {
    background: var(--web-panel-color, #e63946);
    color: #fff;
    border-color: var(--web-panel-color, #e63946);
}

.yp-categories-section .cat-chip i {
    color: var(--web-panel-color, #e63946);
}

.yp-categories-section .cat-chip:hover i {
    color: #fff;
}

.yp-biz-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(71, 85, 105, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
}

.yp-biz-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(71, 85, 105, 0.16);
}

.yp-biz-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.yp-biz-card .card-body {
    padding: 16px;
}

.yp-biz-card .card-body h6 a {
    color: #1a1a2e;
    font-weight: 700;
}

.yp-biz-card .card-body h6 a:hover {
    color: var(--web-panel-color, #e63946);
}

.yp-biz-card .card-body .addr {
    font-size: 0.82rem;
    color: #888;
}

.yp-review-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(71, 85, 105, 0.08);
    height: 100%;
}

.yp-review-card .reviewer-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.yp-review-card .reviewer-name {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 0.9rem;
}

.yp-review-card .review-date {
    font-size: 0.78rem;
    color: #aaa;
}

.yp-review-card .review-biz-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
    font-size: 12px;
    margin-right: 2px;
}

/* ---- Equal Height Cards Guarantee ---- */
#business-container>div,
#reviews-container>div {
    display: flex;
}

.nb-biz-card,
.yp-testimonial-card {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
}

.nb-body {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

.nb-addr {
    margin-bottom: auto !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 40px !important;
}

.nb-actions {
    margin-top: 16px !important;
    margin-bottom: 0 !important;
}