/* ==========================================
   Recruit Thanks
========================================== */
.thanks-message {
    padding: 180px 0 160px;
    text-align: center;
}

.thanks-lead {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--corporate-brown);
    margin-bottom: 28px;
    line-height: 1.9;
}

.thanks-text {
    font-size: 0.95rem;
    color: var(--font-color);
    line-height: 2.1;
    margin-bottom: 52px;
}

.thanks-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--corporate-brown);
    letter-spacing: 0.12em;
    position: relative;
}

.thanks-link::before {
    content: '\2039';
    font-size: 1.1rem;
    color: var(--skin-beige);
}

.thanks-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--corporate-brown);
    transition: width 0.3s ease;
}

.thanks-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .thanks-message {
        padding: 140px 0 120px;
    }
}
