/* section-golf-course */

.member-box {
    height: 19.8rem;
    padding: 0 3rem 0 4.8rem;
    border-radius: 8px;
    background: url(../../images/background/Card.png);
    background-size: cover;
    background-position: right;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.member-head {
    font-family: 'Playfair Display 700';
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 12px;
    line-height: 4.5rem;
}

.member-text {
    font-family: 'NotoSansThai';
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.56);
    line-height: 2.9rem;
}

.btn-member {
    font-family: 'Montserrat 700';
    width: 17.6rem;
    height: 4.8rem;
    line-height: 2rem;
    border-radius: 32px;
    color: var(--color-blue-btn);
    font-size: 16px;
    border: 0;
    background-color: #fff;
}

.btn-member:hover {
    background-color: var(--color-blue-btn);
    color: #fff;
}

/* ///////////////////////////// */

@media (max-width:767.98px) {
    .member-box {
        height: 317px;
        text-align: center;
        justify-content: normal;
        flex-direction: column;

        background: url(../../images/background/Card-mobile.png);
        background-size: cover;
        background-position: left;
        padding: 0;
        padding-top: 56px;
    }

    .member-head {
        font-size: 24px;
        line-height: 34px;
    }

    .member-text {
        font-size: 14px;
        line-height: 25px;
        margin-bottom: 32px;
    }

    .btn-member {
        width: 167px;
        height: 40px;
    }
}

@media (max-width:575.98px) {}