:root {
    --sts-navy: #14203a;
    --sts-blue: #2b6cd9;
    --sts-blue-light: #61bcff;
    --sts-bg: #e7eaef;
    --sts-border: #ccd3dd;
    --sts-text-secondary: #6b7280;
}

body.post-type-archive-sts_theme,
body.single-sts_theme,
body.home {
    background: var(--sts-bg);
}

.sts-archive-header {
    text-align: center;
    padding: 40px 20px 30px;
}

.sts-archive-header h1 {
    font-weight: 600;
    font-size: 28px;
    color: var(--sts-navy);
    margin: 0 0 8px;
}

.sts-archive-header p {
    font-size: 15px;
    color: var(--sts-text-secondary);
    margin: 0 0 20px;
}

.sts-search-bar {
    width: 100%;
    max-width: 420px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid var(--sts-border);
    padding: 0 16px;
    font-size: 14px;
    background: #ffffff;
}

.sts-filter-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.sts-filter-chip {
    background: #ffffff;
    color: var(--sts-navy);
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--sts-border);
    text-decoration: none;
}

.sts-filter-chip.active {
    background: var(--sts-blue);
    color: #ffffff;
    border-color: var(--sts-blue);
}

.sts-theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 0 20px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.sts-theme-card {
    background: #ffffff;
    border: 1px solid var(--sts-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.15s ease;
}

.sts-theme-card:hover {
    border-color: var(--sts-blue);
}

.sts-card-chrome {
    background: #dde3ea;
    padding: 8px 10px 0;
}

.sts-card-chrome .sts-dots {
    display: flex;
    gap: 4px;
    padding-bottom: 6px;
}

.sts-card-chrome .sts-dots span,
.sts-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #adb5c0;
    display: inline-block;
}

.sts-card-screenshot {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    background: #f3f5f8;
}

.sts-card-body {
    padding: 14px 16px 16px;
}

.sts-card-body h3 {
    font-weight: 600;
    font-size: 16px;
    color: var(--sts-navy);
    margin: 0 0 8px;
}

.sts-card-verdict {
    font-size: 13px;
    line-height: 1.5;
    color: var(--sts-text-secondary);
    margin: 0 0 12px;
}

.sts-card-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--sts-text-secondary);
    margin-bottom: 12px;
}

.sts-card-meta .sts-star {
    color: #d85a30;
}

.sts-card-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 9px;
    border-radius: 8px;
    border: 1px solid var(--sts-border);
    background: #ffffff;
    color: var(--sts-navy);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.sts-card-btn:hover {
    background: var(--sts-blue);
    color: #ffffff;
    border-color: var(--sts-blue);
}

/* Single theme page */
.sts-single-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px 60px;
}

.sts-breadcrumb {
    font-size: 13px;
    color: var(--sts-text-secondary);
    margin-bottom: 16px;
}

.sts-breadcrumb a {
    color: var(--sts-text-secondary);
    text-decoration: none;
}

.sts-single-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 30px;
}

@media (max-width: 780px) {
    .sts-single-grid {
        grid-template-columns: 1fr;
    }
    .sts-category-blocks {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .sts-hero-bold h1 {
        font-size: 32px !important;
    }
}

.sts-single-screenshot-wrap {
    background: #dde3ea;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.sts-single-screenshot {
    width: 100%;
    display: block;
}

.sts-single-title {
    font-weight: 600;
    font-size: 26px;
    color: var(--sts-navy);
    margin: 0 0 12px;
}

.sts-verdict {
    font-size: 15px;
    line-height: 1.7;
    color: var(--sts-navy);
    margin: 0 0 18px;
}

.sts-best-for {
    background: #e6f1fb;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13px;
    color: #0c447c;
    margin-bottom: 22px;
}

.sts-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sts-pros-cons h4 {
    font-size: 13px;
    font-weight: 500;
    color: var(--sts-navy);
    margin: 0 0 10px;
}

.sts-pros-cons ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sts-pros-cons li {
    font-size: 13px;
    color: var(--sts-text-secondary);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.sts-pros li:before {
    content: "✓";
    color: #639922;
    position: absolute;
    left: 0;
}

.sts-cons li:before {
    content: "✕";
    color: #e24b4a;
    position: absolute;
    left: 0;
}

.sts-sidebar-card {
    background: #ffffff;
    border: 1px solid var(--sts-border);
    border-radius: 12px;
    padding: 20px;
}

.sts-download-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--sts-blue);
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 16px;
    box-sizing: border-box;
}

.sts-download-btn:hover {
    background: #1d4fa3;
    color: #ffffff;
}

.sts-meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 8px 0;
    border-top: 1px solid var(--sts-border);
}

.sts-meta-row span:first-child {
    color: var(--sts-text-secondary);
}

.sts-meta-row span:last-child {
    color: var(--sts-navy);
}

/* Bold homepage hero */
.sts-hero-bold {
    background: var(--sts-navy);
    padding: 50px 20px 60px;
    text-align: center;
}

.sts-hero-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.sts-hero-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    display: inline-block;
}

.sts-hero-bold h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 44px;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.2;
}

.sts-hero-bold h1 span {
    color: var(--sts-blue-light);
}

.sts-hero-bold p {
    font-size: 17px;
    color: #b8c4d9;
    margin: 0 0 28px;
}

.sts-search-bar-bold {
    width: 100%;
    max-width: 480px;
    height: 52px;
    border-radius: 10px;
    border: none;
    padding: 0 20px;
    font-size: 15px;
    background: #ffffff;
}

.sts-home-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 20px 0;
}

.sts-home-section-last {
    padding-bottom: 50px;
}

.sts-section-title-bold {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--sts-navy);
    margin: 0 0 20px;
}

.sts-intro-bubble {
    background: #ffffff;
    border: 1px solid var(--sts-border);
    border-radius: 12px;
    padding: 30px 34px;
    max-width: 900px;
    margin: 0 auto;
}

.sts-intro-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--sts-navy);
    margin: 0;
}

.sts-explainer-block {
    background: #ffffff;
    border: 1px solid var(--sts-border);
    border-radius: 12px;
    padding: 30px 34px;
}

.sts-explainer-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--sts-text-secondary);
    margin: 0;
    max-width: 760px;
}

.sts-category-blocks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sts-category-block {
    border-radius: 12px;
    padding: 28px 20px;
    text-decoration: none;
    display: block;
}

.sts-category-block-name {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 6px;
}

.sts-category-block-count {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.sts-guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sts-guide-card {
    display: block;
    background: #ffffff;
    border: 1px solid var(--sts-border);
    border-top: 4px solid var(--sts-blue);
    border-radius: 0 0 10px 10px;
    padding: 18px;
    text-decoration: none;
}

.sts-guide-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--sts-navy);
    margin: 0 0 8px;
    line-height: 1.4;
}

.sts-guide-excerpt {
    font-size: 13px;
    line-height: 1.5;
    color: var(--sts-text-secondary);
    margin: 0 0 10px;
}

.sts-guide-meta {
    font-size: 13px;
    color: var(--sts-text-secondary);
    margin: 0;
}
