/* ── Artist Detail ─────────────────────────────── */
.artist-detail-section {
    padding: 64px 0 80px;
}
.artist-detail-h2 {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.06em;
    margin-bottom: 28px;
}
.artist-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 40px;
}
.artist-main-img {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #e0e0e0;
}
.artist-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.artist-detail-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.artist-name-header {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}
.artist-name-icon {
    width: 120px;
    aspect-ratio: 1;
    overflow: hidden;
    background: #e8e8e8;
    border: 1px solid #E6E7EA;
}
.artist-name-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.artist-name-label {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.4;
}
.artist-genre-tag {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
}
.artist-intro-text {
    font-size: 0.9rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 24px;
}
.artist-sns-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.artist-sns-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 32px;
    padding: 0 12px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: bold;
    letter-spacing: 0.03em;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.artist-sns-link:hover {
    background: #000;
    color: #fff;
}

.artist-message-box {
    background: #F7F8FA;
    padding: 20px;
    margin-bottom: 20px;
}
.artist-message-label {
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 0.15em;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.artist-message-text {
    font-size: 0.85rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
}
.artist-sidebar-icon {
    width: 36px;
    height: 36px;
    object-fit: cover;
    display: block;
    margin-left: auto;
}

/* CTA button */
.artist-cta-btn {
    display: inline-block;
    align-self: center;
    border: 1px solid #E6E7EA;
    padding: 10px 24px;
    color: #0B0B0C;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    background: #F7F8FA;
    font-family: inherit;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s;
}
.artist-cta-btn:hover {
    background: #E6E7EA;
}

.artist-works-section {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid #E6E7EA;
}
.artist-works-section .products {
    justify-content: flex-start;
    gap: 1.3%;
}
.artist-works-section .flex .product {
    width: calc((100% - 3 * 1.3%) / 4);
}
.artist-works-section .flex .brand {
    text-align: left;
}

/* アップサイクル実績 ページネーション */
.works-pager {
    margin-top: 40px;
    text-align: center;
}
.works-pager-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}
.works-pager-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border: 1px solid #E6E7EA;
    color: #0B0B0C;
    text-decoration: none;
    font-size: 0.85rem;
}
.works-pager-links a:hover,
.works-pager-links a.current_page {
    background: #0B0B0C;
    color: #fff;
}
.works-pager-links a span {
    pointer-events: none;
}
.works-pager-info {
    font-size: 0.8rem;
    color: #777;
    margin: 0;
}

/* hidden form field */
.js-hidden-field {
    display: none;
}

@media (max-width: 787px) {
    .artist-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .artist-detail-section {
        padding: 40px 0 60px;
    }
}
