/* ==========================================================================
   Travel Ambassador page layout — thevegasvacation.com/Home/TravelAmbassador
   All rules are namespaced under .lvt / .lvt-* so nothing leaks into other
   pages or overrides layout_style.css elsewhere on the site.
   Upload to: /css/ambassador_layout.css
   ========================================================================== */

.lvt {
    --ink: #14122e;
    --muted: #5b5c78;
    --brand: #2a1fd4;
    --red: #e11414;
    --line: #e4e6f1;
    --surface: #f5f6fb;
    --aqua: #0d7f8f;
    --aqua-soft: #eaf6f7;
    --sand: #fbf7ef;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    display: block;
    padding: 46px 0 64px;
    background: #fff;
}

/* --- reset inherited site rules inside this block only --- */
.lvt h1,
.lvt h2,
.lvt h3,
.lvt p,
.lvt summary,
.lvt span,
.lvt strong {
    position: static;
    text-align: left;
    text-transform: none;
    background: none;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    letter-spacing: normal;
    padding: 0;
}

.lvt ul,
.lvt li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lvt p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.72;
}

.lvt p strong {
    color: var(--ink);
    font-weight: 700;
}

.lvt a {
    color: var(--brand);
}

/* --- intro --- */
.lvt .lvt-eyebrow {
    display: block;
    margin: 0 0 10px;
    color: var(--red);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.lvt h1.lvt-title {
    margin: 0 0 18px;
    color: var(--brand);
    font-size: 40px;
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -.015em;
    text-transform: uppercase;
}

.lvt-lead {
    font-size: 17px !important;
    line-height: 1.68 !important;
    color: var(--ink) !important;
    max-width: 62ch;
}

/* --- promise band --- */
.lvt-band {
    margin: 26px 0 34px;
    padding: 26px 28px 20px;
    border: 1px solid #d5e9ec;
    border-radius: 14px;
    background: linear-gradient(180deg, var(--aqua-soft) 0%, #fff 78%);
}

.lvt .lvt-band__title {
    display: block;
    margin: 0 0 18px;
    color: var(--aqua);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.lvt-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 34px;
}

.lvt .lvt-col__head {
    display: block;
    margin: 0 0 12px;
    padding-bottom: 9px;
    border-bottom: 1px solid #d5e9ec;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.lvt-list li {
    position: relative;
    margin: 0 0 9px;
    padding-left: 26px;
    color: var(--ink);
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.5;
}

.lvt-list li::before {
    position: absolute;
    left: 0;
    top: -1px;
    font-size: 15px;
    font-weight: 900;
}

.lvt-list--yes li::before {
    content: "\2713";
    color: var(--aqua);
}

.lvt-list--no li {
    color: var(--muted);
    font-weight: 500;
}

.lvt-list--no li::before {
    content: "\00d7";
    color: #a3a7bd;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 400;
    top: -4px;
}

.lvt-band__foot {
    margin: 18px 0 0 !important;
    padding-top: 16px;
    border-top: 1px solid #d5e9ec;
    color: var(--ink) !important;
    font-size: 15.5px !important;
    font-weight: 600;
}

/* --- section rules --- */
.lvt-rule {
    margin: 40px 0 24px;
    border-top: 2px solid var(--ink);
}

.lvt h2.lvt-h2 {
    margin: 0 0 6px;
    color: var(--ink);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -.01em;
}

.lvt-sub {
    margin: 0 0 22px !important;
    font-size: 14.5px !important;
}

/* --- ambassador cards --- */
.lvt-people {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
    margin: 0 0 8px;
}

.lvt-person {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(20, 18, 46, .05);
    transition: box-shadow .22s ease, transform .22s ease;
}

.lvt-person:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(20, 18, 46, .1);
}

.lvt-person__photo {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    background: var(--surface);
}

.lvt-person__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lvt .lvt-person__badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    color: var(--aqua);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(20, 18, 46, .16);
}

.lvt-person__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 18px 18px 20px;
}

.lvt-person__name {
    margin: 0 0 4px;
    color: var(--ink);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.01em;
}

.lvt .lvt-person__role {
    display: block;
    margin: 0 0 12px;
    color: var(--brand);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .085em;
    white-space: nowrap;
    text-transform: uppercase;
}

.lvt-person__blurb {
    margin: 0 0 14px !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
}

.lvt-person__facts {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.lvt-person__facts li {
    position: relative;
    margin: 0 0 8px;
    padding-left: 20px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.lvt-person__facts li:last-child {
    margin-bottom: 0;
}

.lvt-person__facts li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--aqua);
    font-weight: 900;
}

.lvt-note {
    margin: 16px 0 0 !important;
    padding-left: 14px;
    border-left: 3px solid #f0c419;
    color: var(--muted) !important;
    font-size: 13.5px !important;
    line-height: 1.6 !important;
}

/* --- hours card --- */
.lvt-hours {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
    margin: 0 0 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--sand);
}

.lvt-hours__cell {
    padding: 20px 24px;
}

.lvt-hours__cell + .lvt-hours__cell {
    border-left: 1px solid var(--line);
}

.lvt .lvt-hours__k {
    display: block;
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.lvt .lvt-hours__v {
    display: block;
    color: var(--ink);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
}

.lvt .lvt-hours__d {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.5;
}

/* --- closing callout --- */
.lvt-callout {
    margin: 26px 0 0;
    padding: 26px 28px;
    border-radius: 14px;
    background: var(--ink);
}

.lvt-callout p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .8);
    font-size: 15.5px;
}

.lvt-callout p:last-child {
    margin-bottom: 0;
}

.lvt-callout p strong,
.lvt-callout .lvt-callout__lead {
    color: #fff;
    font-weight: 700;
}

.lvt-callout .lvt-callout__lead {
    font-size: 17px;
    line-height: 1.6;
}

.lvt-aside {
    padding-top: 6px;
}

/* --- responsive --- */
@media (max-width: 991px) {
    .lvt h1.lvt-title { font-size: 32px; }
    .lvt-people { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .lvt { padding: 30px 0 44px; }
    .lvt .lvt-person__role { font-size: 11.5px; letter-spacing: .09em; }
    .lvt h1.lvt-title { font-size: 27px; }
    .lvt-lead { font-size: 16px !important; }
    .lvt-cols,
    .lvt-people,
    .lvt-hours { grid-template-columns: 1fr; }
    .lvt-people { gap: 22px; }
    .lvt-band { padding: 22px 18px 18px; }
    .lvt-hours__cell + .lvt-hours__cell {
        border-left: 0;
        border-top: 1px solid var(--line);
    }
    .lvt-callout { padding: 22px 20px; }
}

@media (prefers-reduced-motion: reduce) {
    .lvt-person { transition: none; }
    .lvt-person:hover { transform: none; }
}
