/* ===============================
   JANELTRIP HOST PROFILES
=============================== */
.jt-host-profile-wrap {
    max-width: 1180px;
    margin: 55px auto;
    padding: 0 24px;
}

.jt-host-hero {
    background: linear-gradient(135deg, rgba(4,93,67,.96), rgba(36,143,96,.88));
    color: #fff;
    border-radius: 34px;
    padding: 38px;
    display: flex;
    align-items: center;
    gap: 28px;
    box-shadow: 0 25px 70px rgba(0,90,65,.22);
}

.jt-host-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 999px;
    border: 5px solid rgba(255,255,255,.55);
}

.jt-host-badge {
    display: inline-block;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.25);
    padding: 8px 13px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 12px;
}

.jt-host-info h1 {
    font-size: 42px;
    margin: 0 0 8px;
    font-weight: 900;
}

.jt-host-subtitle {
    color: rgba(255,255,255,.85);
    font-size: 17px;
    margin: 0 0 22px;
}

.jt-host-stats {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.jt-host-stats div {
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 18px;
    padding: 14px 22px;
    min-width: 110px;
}

.jt-host-stats strong,
.jt-host-stats span {
    display: block;
}

.jt-host-stats strong {
    font-size: 24px;
}

.jt-host-stats span {
    color: rgba(255,255,255,.82);
    font-size: 13px;
}

.jt-host-about,
.jt-host-properties {
    background: #fff;
    border: 1px solid #e3f4e9;
    border-radius: 30px;
    padding: 30px;
    margin-top: 28px;
    box-shadow: 0 14px 45px rgba(0,90,65,.09);
}

.jt-host-about h2,
.jt-host-section-head h2 {
    color: #045d43;
    font-size: 30px;
    margin: 0 0 10px;
    font-weight: 900;
}

.jt-host-about p,
.jt-host-section-head p {
    color: #5f7469;
    line-height: 1.65;
    margin: 0;
}

.jt-host-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.jt-host-trust-row span {
    background: #f1fbf4;
    border: 1px solid #dceee4;
    color: #045d43;
    padding: 9px 13px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
}

.jt-host-property-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.jt-host-property-card {
    background: #fff;
    border: 1px solid #e8f3ec;
    border-radius: 26px;
    overflow: hidden;
    text-decoration: none;
    color: #111;
    box-shadow: 0 14px 40px rgba(0,90,65,.10);
    transition: .3s ease;
}

.jt-host-property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 60px rgba(0,90,65,.16);
}

.jt-host-property-img {
    height: 220px;
    background: #eef7f1;
    position: relative;
    overflow: hidden;
}

.jt-host-property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.jt-host-property-card:hover .jt-host-property-img img {
    transform: scale(1.06);
}

.jt-host-property-img span {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255,255,255,.93);
    color: #045d43;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.jt-host-property-body {
    padding: 20px;
}

.jt-host-card-title {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.jt-host-card-title h3 {
    color: #045d43;
    margin: 0;
    font-size: 21px;
}

.jt-host-card-title b {
    background: #f1fbf4;
    color: #045d43;
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 13px;
}

.jt-host-property-body p {
    color: #5f7469;
    line-height: 1.5;
}

.jt-host-card-price strong,
.jt-host-card-price small {
    display: block;
}

.jt-host-card-price strong {
    font-size: 20px;
}

.jt-host-card-price small {
    color: #777;
}

.jt-host-empty {
    background: #f6fff8;
    border-radius: 18px;
    padding: 22px;
    color: #5f7469;
    margin-top: 20px;
}

/* Property page host link */
.jt-property-host-link {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #e3f4e9;
    border-radius: 22px;
    padding: 16px;
    text-decoration: none;
    color: #111;
    margin: 18px 0;
    box-shadow: 0 10px 28px rgba(0,90,65,.07);
}

.jt-property-host-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 999px;
}

.jt-property-host-link strong {
    display: block;
    color: #045d43;
}

.jt-property-host-link small {
    color: #5f7469;
    font-weight: 700;
}

@media (max-width: 900px) {
    .jt-host-hero {
        flex-direction: column;
        text-align: center;
        padding: 30px 22px;
    }

    .jt-host-info h1 {
        font-size: 34px;
    }

    .jt-host-stats {
        justify-content: center;
    }

    .jt-host-property-grid {
        grid-template-columns: 1fr;
    }
}
