.spot-article-wrap {
    width: min(100%, 1200px);
    margin: 76px auto 40px;
    padding: 0 20px;
}

.spot-article {
    color: #1f1f1f;
    max-width: 980px;
    margin: 0 auto;
}

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

.spot-title {
    margin: 0 0 26px;
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 1.16;
    letter-spacing: -0.01em;
    color: #111;
    overflow-wrap: anywhere;
}

.spot-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid #ececec;
}

.spot-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spot-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
}

.spot-author-name {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.spot-meta {
    margin: 2px 0 0;
    color: #6f6f6f;
    font-size: 13px;
}

.spot-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spot-icon-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #e6e6e6;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #505050;
}

.spot-featured-media {
    margin: 30px 0 36px;
    display: flex;
    justify-content: center;
}

.spot-featured-media img {
    width: min(100%, 780px);
    max-height: 260px;
    object-fit: contain;
    border-radius: 14px;
    background: #f5f7fb;
}

.spot-content {
    font-family: Georgia, serif;
    font-size: clamp(16px, 1.1vw, 18px);
    line-height: 1.75;
    color: #1c1c1c;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.spot-content p {
    margin-bottom: 1.2em;
}

.spot-content img,
.spot-content video,
.spot-content iframe,
.spot-content table {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    display: block;
    margin: 12px auto;
}

.spot-content img {
    max-height: 300px;
    object-fit: contain;
    border-radius: 10px;
    background: #f5f7fb;
}

.spot-content h1,
.spot-content h2,
.spot-content h3 {
    margin-top: 1.6em;
    margin-bottom: 0.6em;
    font-family: Inter, sans-serif;
    line-height: 1.2;
}

.spot-content h1 {
    font-size: clamp(24px, 2.4vw, 34px);
}

.spot-content h2 {
    font-size: clamp(21px, 2vw, 28px);
}

.spot-content h3 {
    font-size: clamp(18px, 1.6vw, 22px);
}

.spot-article-footer {
    margin-top: 40px;
    padding-top: 26px;
    border-top: 1px solid #ececec;
}

.spot-category {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f1f5ff;
    color: #1a73e8;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.spot-author-card {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border: 1px solid #ececec;
    border-radius: 12px;
    background: #fff;
}

.spot-author-avatar-lg {
    width: 60px;
    height: 60px;
    border-radius: 999px;
}

.spot-author-card h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.spot-author-card p {
    margin: 0;
    color: #666;
}

.spot-cta {
    margin-top: 18px;
    text-align: center;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 22px 16px;
}

.spot-cta h4 {
    margin: 0 0 12px;
    font-size: 18px;
}

.spot-btn-secondary,
.spot-btn-primary {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

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

.spot-btn-primary {
    background: #1a73e8;
    color: #fff;
}

.spot-btn-secondary:hover,
.spot-btn-primary:hover,
.spot-btn-secondary:focus,
.spot-btn-primary:focus {
    background: #1558b0;
    color: #fff;
    text-decoration: none;
    opacity: 1;
}

.spot-comments {
    margin-top: 30px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.spot-empty-state {
    text-align: center;
    padding: 100px 16px;
}

.spot-empty-state p {
    color: #666;
    margin-bottom: 18px;
}

/* Prevent legacy global .page-header styles from leaking into Spot content */
.spot-article-wrap .page-header {
    text-align: left !important;
    color: inherit !important;
    background: transparent !important;
    position: static !important;
    width: auto !important;
    top: auto !important;
    left: auto !important;
    box-shadow: none !important;
}

@media (max-width: 768px) {
    .spot-article-wrap {
        width: 100%;
        margin-top: 44px;
        padding: 0 12px;
    }

    .spot-title {
        font-size: clamp(18px, 5.8vw, 22px);
        margin-bottom: 16px;
    }

    .spot-content {
        font-size: 14px;
        line-height: 1.6;
    }

    .spot-content h1 {
        font-size: 20px;
    }

    .spot-content h2 {
        font-size: 18px;
    }

    .spot-content h3 {
        font-size: 16px;
    }

    .spot-meta-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .spot-featured-media {
        margin: 18px 0 24px;
    }

    .spot-featured-media img {
        width: 100%;
        max-height: 180px;
        border-radius: 10px;
    }

    .spot-content img {
        max-height: 200px;
    }

    .spot-author-card {
        gap: 12px;
        padding: 12px;
    }
}
