.tae-db-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.tae-db-btn1,
.tae-db-btn2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    border-radius: 999px;
    border: 2px solid transparent;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
}

/* Button 1 — solid white (primary) */
.tae-db-btn1 {
    background-color: #ffffff;
    color: #1271b6;
    border-color: #ffffff;
}
.tae-db-btn1:hover {
    background-color: #f0f9ff;
    border-color: #f0f9ff;
    color: #1271b6;
}

/* Button 2 — outline (secondary) */
.tae-db-btn2 {
    background-color: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}
.tae-db-btn2:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}

/* Stack on mobile */
@media (max-width: 767px) {
    .tae-db-wrap.tae-db-stack-mobile {
        flex-direction: column;
        align-items: stretch;
    }
    .tae-db-wrap.tae-db-stack-mobile .tae-db-btn1,
    .tae-db-wrap.tae-db-stack-mobile .tae-db-btn2 {
        justify-content: center;
        width: 100%;
    }
}
