/* ==========================================================================
   Creator profile (author archive) — warm editorial, matches the header
   design language: Pretendard, paper surface, ink text, yellow accents.
   ========================================================================== */

.bmp-creator {
    font-family: var(--bmp-font, "Pretendard Variable", Pretendard, sans-serif);
    color: #201b12;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.bmp-creator-hero {
    background: #fffdf7;
    border-bottom: 1px solid rgba(32, 27, 18, 0.08);
}

.bmp-creator-hero-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 1024px;
    margin: 0 auto;
    padding: 56px 24px;
}

.bmp-creator-avatar img {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 8px 28px -12px rgba(32, 27, 18, 0.35);
}

.bmp-creator-label {
    margin: 0 0 4px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(32, 27, 18, 0.45);
}

.bmp-creator-name {
    position: relative;
    display: inline-block;
    margin: 0 0 10px;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    z-index: 1;
}

/* the brand highlighter swipe, echoing the nav hover */
.bmp-creator-name::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: -6px;
    right: -6px;
    bottom: 3px;
    height: 14px;
    background: #ffd43b;
    opacity: 0.55;
    border-radius: 2px;
    transform: rotate(-1.2deg);
}

.bmp-creator-bio {
    margin: 0 0 18px;
    max-width: 560px;
    font-size: 15.5px;
    line-height: 1.65;
    color: rgba(32, 27, 18, 0.72);
}

.bmp-creator-foot {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.bmp-creator-stats {
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    color: rgba(32, 27, 18, 0.6);
}

.bmp-creator-stats strong {
    font-size: 16px;
    color: #201b12;
}

.bmp-creator-socials {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bmp-creator-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(32, 27, 18, 0.18);
    border-radius: 50%;
    color: #201b12;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.bmp-creator-socials a:hover {
    background: #ffd43b;
    border-color: #ffd43b;
    transform: translateY(-2px);
}

.bmp-social-icon:before {
    font: 15px/1 FontAwesome;
}

.bmp-social-instagram:before { content: "\f16d"; }
.bmp-social-youtube:before { content: "\f16a"; }
.bmp-social-facebook:before { content: "\f09a"; }
.bmp-social-twitter:before { content: "\f099"; }

/* --------------------------------------------------------------------------
   Post grid
   -------------------------------------------------------------------------- */

.bmp-creator-posts {
    max-width: 1024px;
    margin: 0 auto;
    padding: 40px 24px 72px;
}

.bmp-creator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 28px 24px;
}

.bmp-card {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(32, 27, 18, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bmp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px -18px rgba(32, 27, 18, 0.3);
}

.bmp-card-media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f6f2e8;
}

.bmp-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.bmp-card:hover .bmp-card-media img {
    transform: scale(1.04);
}

.bmp-card-media-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 40px;
    opacity: 0.35;
}

.bmp-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px 16px;
}

.bmp-card-cat {
    align-self: flex-start;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(32, 27, 18, 0.55);
    text-decoration: none;
}

.bmp-card-cat:hover {
    color: #201b12;
}

.bmp-card-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.bmp-card-title a {
    color: #201b12;
    text-decoration: none;
}

.bmp-card-title a:hover {
    text-decoration: underline;
    text-decoration-color: #ffd43b;
    text-decoration-thickness: 3px;
    text-underline-offset: 3px;
}

.bmp-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    font-size: 12.5px;
    color: rgba(32, 27, 18, 0.5);
}

.bmp-card-paws {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    color: #201b12;
}

.bmp-card-paw-icon:before {
    font: 12px/1 FontAwesome;
    content: "\f1b0";
    color: #e0b818;
}

/* --------------------------------------------------------------------------
   Pagination & empty state
   -------------------------------------------------------------------------- */

.bmp-creator-posts .pagination,
.bmp-creator-posts .nav-links {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 48px;
}

.bmp-creator-posts .nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border-radius: 10px;
    border: 1px solid rgba(32, 27, 18, 0.12);
    font-size: 14px;
    font-weight: 600;
    color: #201b12;
    text-decoration: none;
}

.bmp-creator-posts .nav-links .page-numbers.current {
    background: #201b12;
    border-color: #201b12;
    color: #fffdf7;
}

.bmp-creator-posts .nav-links .page-numbers:hover:not(.current) {
    background: #ffd43b;
    border-color: #ffd43b;
}

.bmp-creator-empty {
    padding: 80px 0;
    text-align: center;
    color: rgba(32, 27, 18, 0.5);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 720px) {
    .bmp-creator-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 36px 18px;
    }

    .bmp-creator-avatar img {
        width: 84px;
        height: 84px;
    }

    .bmp-creator-name {
        font-size: 27px;
    }

    .bmp-creator-posts {
        padding: 28px 18px 56px;
    }

    .bmp-creator-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 20px 14px;
    }
}
