.spot-author-page {
    max-width: 1080px;
    margin: 84px auto 40px;
    padding: 0 20px;
}

.spot-author-hero {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border: 1px solid #ececec;
    background: #fff;
    border-radius: 14px;
    padding: 22px;
}

.spot-author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    object-fit: cover;
}

.spot-author-kicker {
    margin: 0 0 6px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a73e8;
    font-weight: 600;
}

.spot-author-hero h1 {
    margin: 0 0 6px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.1;
    color: #111;
}

.spot-author-blog-title {
    margin: 0;
    color: #3a3a3a;
    font-size: 16px;
    font-weight: 600;
}

.spot-author-tagline {
    margin: 8px 0 0;
    color: #666;
}

.spot-author-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 14px;
    color: #404040;
    font-weight: 600;
}

.spot-author-actions {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.spot-author-action-btn {
    border: 1px solid #1a73e8;
    background: #1a73e8;
    color: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.spot-author-action-btn i {
    font-size: 18px;
}

.spot-author-action-btn:hover,
.spot-author-action-btn:focus {
    background: #155fc0;
    border-color: #155fc0;
}

.spot-author-action-btn-secondary {
    background: #fff;
    color: #1a73e8;
}

.spot-author-action-btn-secondary:hover,
.spot-author-action-btn-secondary:focus {
    background: #f4f8ff;
    color: #1a73e8;
    border-color: #1a73e8;
}

.spot-author-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 16px;
}

.spot-author-card {
    border: 1px solid #ececec;
    border-radius: 14px;
    background: #fff;
    padding: 18px;
}

.spot-author-card h2 {
    margin: 0 0 12px;
    font-size: 18px;
}

.spot-author-post-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.spot-author-post-item {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.spot-author-post-link {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    align-items: start;
    padding: 10px;
    color: #202020;
    text-decoration: none;
}

.spot-author-post-link:hover,
.spot-author-post-link:focus {
    color: #1a73e8;
    text-decoration: none;
    background: #f8fbff;
}

.spot-author-post-thumb {
    width: 100%;
    height: 88px;
    object-fit: cover;
    border-radius: 8px;
    background: #f4f4f4;
}

.spot-author-post-content h3 {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.25;
}

.spot-author-post-content p {
    margin: 0 0 8px;
    color: #586370;
    font-size: 14px;
    line-height: 1.35;
}

.spot-author-post-content small {
    color: #6b6b6b;
    display: block;
    font-size: 12px;
}

.spot-author-empty {
    margin: 0;
    color: #6b6b6b;
}

@media (max-width: 768px) {
    .spot-author-page {
        margin-top: 48px;
    }

    .spot-author-hero {
        flex-direction: column;
    }

    .spot-author-grid {
        grid-template-columns: 1fr;
    }

    .spot-author-post-link {
        grid-template-columns: 1fr;
    }

    .spot-author-post-thumb {
        height: 165px;
    }
}
