/* ---- sections ---- */
.lzb-new-design-where-to-play .wrap {
    max-width: var(--maxw, 1180px);
    margin: 0 auto;
    padding: 0 26px;
}

.lzb-new-design-where-to-play section {
    padding: 90px 0;
}

.lzb-new-design-where-to-play .sec-head {
    margin-bottom: 50px;
    max-width: 720px;
}

.lzb-new-design-where-to-play .sec-tag {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--fairway, #1f7a4d);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lzb-new-design-where-to-play .sec-tag:before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--brass, #c9a24b);
}

.lzb-new-design-where-to-play h2.big {
    font-size: clamp(30px, 4.5vw, 50px);
    font-weight: 800;
    color: var(--ink, #0a1410);
    margin-bottom: 0;
    line-height: 1.04;
    letter-spacing: -.02em;
}

.lzb-new-design-where-to-play h2.big .acc {
    color: var(--fairway, #1f7a4d);
}

.lzb-new-design-where-to-play .sec-head p {
    margin-top: 16px;
    font-size: 16px;
    color: #46584d;
    margin-bottom: 0;
}

/* ---- course cards ---- */
.lzb-new-design-where-to-play .courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lzb-new-design-where-to-play .course {
    background: #fff;
    border-radius: var(--r, 18px);
    overflow: hidden;
    box-shadow: var(--shadow, 0 24px 60px -28px rgba(0,0,0,.55));
    border: 1px solid var(--line-dark, rgba(10,20,16,.12));
    transition: .32s;
    cursor: pointer;
}

.lzb-new-design-where-to-play .course:hover {
    transform: translateY(-7px);
}

.lzb-new-design-where-to-play .course .ph {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--night, #0a1f17);
}

.lzb-new-design-where-to-play .course .ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.lzb-new-design-where-to-play .course:hover .ph img {
    transform: scale(1.06);
}

.lzb-new-design-where-to-play .course .ph .ribbon {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--brass, #c9a24b);
    color: var(--ink, #0a1410);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 11px;
    padding: 5px 11px;
    border-radius: 20px;
    letter-spacing: .03em;
    z-index: 2;
}

.lzb-new-design-where-to-play .course .body {
    padding: 20px 20px 22px;
}

.lzb-new-design-where-to-play .course h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 20px;
    margin-bottom: 6px;
    margin-top: 0;
    color: var(--ink, #0a1410);
    line-height: 1.04;
    letter-spacing: -.02em;
}

.lzb-new-design-where-to-play .course .spec {
    font-size: 13px;
    color: var(--fairway, #1f7a4d);
    font-weight: 700;
    letter-spacing: .02em;
    margin-bottom: 10px;
}

.lzb-new-design-where-to-play .course p {
    font-size: 13.5px;
    color: #56685c;
    margin-bottom: 0;
}

.lzb-new-design-where-to-play .course .more {
    margin-top: 14px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--brass-lo, #a8842f);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: .2s;
}

.lzb-new-design-where-to-play .course:hover .more {
    gap: 12px;
}

@media(max-width:900px) {
    .lzb-new-design-where-to-play .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width:640px) {
    .lzb-new-design-where-to-play .courses-grid {
        grid-template-columns: 1fr;
    }
    .lzb-new-design-where-to-play section {
        padding: 64px 0;
    }
}
