/* Application Fee Card */

.gaf {
    border: 2px solid rgba(35, 25, 55, 0.55);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    max-width: 820px;
    margin: 0 auto;
}

.gaf__grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    align-items: stretch;
}

.gaf__media {
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gaf__img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    object-fit: cover;
}

.gaf__content {
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
}

.gaf__title {
    margin: 0;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 900;
    color: #3a2a44;
}

.gaf__price {
    font-size: 28px;
    font-weight: 900;
    color: #2b3b45;
}

.gaf__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    border-radius: 10px;
    background: #f5c86a;
    color: #0b4f60;
    text-decoration: none;
    font-weight: 900;
    font-size: 20px;
    transition: opacity 0.15s;
    cursor: pointer;
    border: none;
}

.gaf__btn:hover {
    opacity: 0.85;
    text-decoration: none;
    color: #0b4f60;
}

.gaf__btn--disabled {
    background: #d1d5db;
    color: #6b7280;
    cursor: not-allowed;
}

.gaf__btn--disabled:hover {
    opacity: 1;
    color: #6b7280;
}

.gaf__btn--login {
    background: #e8e0f0;
    color: #3a2a44;
}

.gaf__btn--login:hover {
    color: #3a2a44;
}

.gaf__notice {
    text-align: center;
    font-size: 14px;
    color: #856404;
    background: #fff3cd;
    padding: 10px 14px;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 767px) {
    .gaf {
        max-width: 360px;
    }

    .gaf__grid {
        grid-template-columns: 1fr;
    }

    .gaf__media {
        padding: 18px 18px 6px;
    }

    .gaf__content {
        text-align: center;
        align-items: center;
        padding: 18px 18px 22px;
    }

    .gaf__title {
        font-size: 30px;
    }

    .gaf__price {
        font-size: 26px;
    }

    .gaf__btn {
        width: 100%;
    }
}
