.claim-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.claim-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.claim-badge {
    display: inline-block;
    background: var(--kr-orange);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.claim-subheadline {
    max-width: 700px;
    margin: 1rem auto 2rem auto;
    color: #666;
    font-size: 1.1rem;
}

.claim-hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;   /* important */
    gap: 1rem;
    flex-wrap: wrap;
}

.claim-hero-actions a {
    display: inline-flex;   /* makes vertical centering perfect */
    align-items: center;
    justify-content: center;
    height: 48px;           /* same height for both */
    padding: 0 1.8rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

.claim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.claim-card {
    background: white;
    padding: 2rem;
    border-radius: 14px;
    border: 1px solid var(--kr-border-light);
}

.claim-icon {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.claim-steps {
    display: grid;
    gap: 1.5rem;
}

.claim-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    background: var(--kr-orange);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.claim-trust-box {
    display: flex;
    justify-content: space-around;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 14px;
    flex-wrap: wrap;
    gap: 1rem;
}

.claim-faq .faq-item {
    margin-bottom: 1.5rem;
}

/* Wrapper */
.kita-search-wrapper {
    max-width: 640px;
    margin: 0 auto 32px auto;
    position: relative;
}

/* Input */
.kita-search-input {
    width: 100%;
    padding: 16px 18px;
    font-size: 16px;
    border-radius: 14px;
    border: 1px solid #e3e6ea;
    background: #ffffff;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/* Focus state */
.kita-search-input:focus {
    outline: none;
    border-color: var(--kr-orange);
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* Hint text */
.input-hint {
    margin-top: 8px;
    font-size: 13px;
    color: #7a7f87;
}

/* Loading indicator */
.search-loading {
    display: none;
    font-size: 14px;
    margin-top: 10px;
    color: var(--kr-orange);
}

/* HTMX automatically adds this class while loading */
.htmx-request + .search-loading,
.htmx-request.search-loading {
    display: block;
}



/* === for kita_list === */
/* List item spacing */
.kita-list-item {
    display: flex;
    align-items: center;
    gap: 12px; /* space between name, link, button */
    margin-bottom: 12px;
    font-size: 15px;
}

/* Official source link styling */
.official-link {
    color: var(--kr-orange);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.official-link:hover {
    text-decoration: underline;
}

/* Optional: adjust button spacing inline */
.kita-list-item .btn-secondary {
    margin-left: auto; /* pushes the button to the right if desired */
}
