/* ==========================================================================
   /for-artists/ — the landing page that makes the case to a band.

   Loaded on top of tools.css, which supplies the page frame (.tl-page,
   .tl-section, .tl-lede, .tl-crumbs, .tl-faq). Everything here is specific to
   this page: the hero and its search box, the offer grid, the steps and the
   examples row.
   ========================================================================== */

.fa-eyebrow {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #ff4444;
    margin: 0 0 .6rem;
}

.fa-title {
    font-size: clamp(2rem, 5.5vw, 3.4rem);
    line-height: 1.05;
    color: #fff;
    margin: 0 0 1rem;
}

.fa-hero {
    padding: 1rem 0 2.5rem;
    border-bottom: 1px solid #1e1e1e;
}

/* --- Buttons -------------------------------------------------------------- */

.fa-cta,
.fa-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 1.4rem;
    border-radius: 4px;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.fa-cta {
    background: #ff0000;
    color: #fff;
}

.fa-cta:hover {
    background: #d40000;
    color: #fff;
}

.fa-btn {
    background: transparent;
    border-color: #333;
    color: #ddd;
}

.fa-btn:hover {
    border-color: #ff4444;
    color: #fff;
}

/* --- Find your band ------------------------------------------------------- */

.fa-search {
    margin-top: 1.5rem;
    max-width: 640px;
}

.fa-search-label {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: .5rem;
}

.fa-search-row {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
}

.fa-search input[type="search"] {
    flex: 1 1 260px;
    min-width: 0;
    padding: .8rem 1rem;
    background: #111;
    border: 1px solid #333;
    border-radius: 4px;
    color: #eee;
    font-size: 1rem;
}

.fa-search input[type="search"]:focus {
    outline: none;
    border-color: #ff4444;
}

.fa-search-note {
    margin: .7rem 0 0;
    color: #888;
    font-size: .85rem;
    line-height: 1.5;
}

.fa-yours {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem;
}

.fa-yours p {
    margin: 0;
    color: #bbb;
    width: 100%;
}

/* --- Search results ------------------------------------------------------- */

.fa-matches {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.fa-matches li {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1rem;
    border: 1px solid #222;
    border-radius: 4px;
}

.fa-match-id strong {
    display: block;
    color: #eee;
    font-size: 1.05rem;
}

.fa-match-id small {
    display: block;
    color: #888;
    font-size: .82rem;
    margin-top: .2rem;
}

.fa-match-actions {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.fa-match-actions .fa-cta,
.fa-match-actions .fa-btn {
    padding: .55rem 1rem;
    font-size: .8rem;
}

.fa-no-match {
    color: #888;
    font-size: .9rem;
}

.fa-no-match a {
    color: #ff5555;
}

/* --- What you get --------------------------------------------------------- */

.fa-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1rem;
}

.fa-grid li {
    padding: 1.2rem;
    border: 1px solid #222;
    border-radius: 4px;
}

.fa-grid i {
    color: #ff0000;
    font-size: 1.2rem;
}

.fa-grid h3 {
    margin: .7rem 0 .4rem;
    color: #eee;
    font-size: 1.02rem;
}

.fa-grid p {
    margin: 0;
    color: #999;
    font-size: .9rem;
    line-height: 1.6;
}

/* --- How claiming works --------------------------------------------------- */

.fa-steps {
    margin: 0;
    padding-left: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: .9rem;
    color: #999;
    line-height: 1.65;
}

.fa-steps strong {
    color: #eee;
    display: block;
}

/* --- Examples ------------------------------------------------------------- */

.fa-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: .8rem;
}

.fa-example {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    padding: 1rem .6rem;
    border: 1px solid #222;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
}

.fa-example:hover {
    border-color: #ff4444;
}

.fa-example img,
.fa-example-blank {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
}

.fa-example-blank {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #161616;
    color: #444;
    font-size: 1.5rem;
}

.fa-example strong {
    color: #eee;
    font-size: .9rem;
    line-height: 1.3;
}

.fa-example small {
    color: #777;
    font-size: .75rem;
}

/* --- Cost ----------------------------------------------------------------- */

.fa-cost p {
    max-width: 62ch;
    color: #999;
    line-height: 1.7;
}

@media (max-width: 600px) {
    .fa-matches li {
        flex-direction: column;
        align-items: flex-start;
    }
}
