/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

:root {
    --pt-dark: #07111f;
    --pt-dark-soft: #111827;
    --pt-text: #152238;
    --pt-muted: #64748b;
    --pt-border: #e5e7eb;
    --pt-soft: #f8fafc;
    --pt-yellow: #facc15;
    --pt-yellow-dark: #eab308;
    --pt-green: #22c55e;
    --pt-red: #ef4444;
    --pt-white: #ffffff;
    --pt-radius-lg: 28px;
    --pt-radius-md: 20px;
    --pt-radius-sm: 14px;
    --pt-shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.08);
    --pt-shadow-card: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.percentop-device-page {
    background: #ffffff;
    color: var(--pt-text);
}

.pt-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.pt-device-hero {
    padding: 70px 0 55px;
    background:
        radial-gradient(circle at top right, rgba(250, 204, 21, 0.20), transparent 32%),
        linear-gradient(135deg, #07111f 0%, #111827 52%, #020617 100%);
    color: var(--pt-white);
}

.pt-device-hero-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 54px;
    align-items: center;
}

.pt-device-image-wrap {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--pt-radius-lg);
    padding: 26px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.pt-device-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 22px;
    object-fit: cover;
}

.pt-device-image-placeholder {
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
}

.pt-device-kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.pt-device-kicker span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(250, 204, 21, 0.14);
    color: var(--pt-yellow);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.pt-device-summary h1 {
    max-width: 680px;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.pt-device-excerpt {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.7;
}

.pt-score-box {
    margin-top: 30px;
    max-width: 520px;
    padding: 26px;
    border-radius: var(--pt-radius-md);
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.20);
}

.pt-score-box span {
    display: block;
    color: var(--pt-yellow);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pt-score-box strong {
    display: block;
    margin-top: 8px;
    color: #ffffff;
    font-size: 52px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.pt-score-box p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.7;
}

.pt-section {
    padding: 58px 0;
}

.pt-section-light {
    background: var(--pt-soft);
    border-top: 1px solid var(--pt-border);
    border-bottom: 1px solid var(--pt-border);
}

.pt-section-heading {
    max-width: 760px;
    margin-bottom: 26px;
}

.pt-section-heading h2 {
    margin: 0 0 8px;
    color: var(--pt-text);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.pt-section-heading p {
    margin: 0;
    color: var(--pt-muted);
    font-size: 16px;
    line-height: 1.7;
}

.pt-card-grid {
    display: grid;
    gap: 20px;
}

.pt-card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pt-card-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pt-info-card,
.pt-score-card,
.pt-advice-card {
    background: #ffffff;
    border: 1px solid var(--pt-border);
    border-radius: var(--pt-radius-md);
    padding: 24px;
    box-shadow: var(--pt-shadow-card);
}

.pt-info-card {
    position: relative;
    overflow: hidden;
}

.pt-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--pt-yellow), var(--pt-green));
}

.pt-card-label {
    display: block;
    margin-bottom: 12px;
    color: var(--pt-muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pt-info-card strong {
    display: block;
    color: var(--pt-text);
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.pt-score-card {
    text-align: center;
}

.pt-score-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--pt-muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pt-score-card strong {
    display: block;
    color: var(--pt-dark);
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.pt-advice-card h3 {
    margin: 0 0 12px;
    color: var(--pt-text);
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.pt-advice-card p {
    margin: 0;
    color: var(--pt-muted);
    font-size: 15px;
    line-height: 1.75;
}

.pt-device-content {
    max-width: 860px;
}

.pt-device-content h2 {
    margin-top: 42px;
    margin-bottom: 14px;
    color: var(--pt-text);
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.pt-device-content h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: var(--pt-text);
    font-size: 24px;
    line-height: 1.2;
}

.pt-device-content p {
    color: #334155;
    font-size: 18px;
    line-height: 1.8;
}

.pt-device-content ul,
.pt-device-content ol {
    color: #334155;
    font-size: 18px;
    line-height: 1.8;
    padding-left: 24px;
}

.pt-device-content a {
    color: #0f62fe;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 980px) {
    .pt-device-hero-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .pt-card-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .pt-container {
        width: min(100% - 28px, 1180px);
    }

    .pt-device-hero {
        padding: 42px 0 38px;
    }

    .pt-device-image-wrap {
        padding: 16px;
        border-radius: 22px;
    }

    .pt-device-summary h1 {
        font-size: 42px;
    }

    .pt-device-excerpt {
        font-size: 16px;
    }

    .pt-score-box {
        padding: 22px;
    }

    .pt-score-box strong {
        font-size: 44px;
    }

    .pt-section {
        padding: 42px 0;
    }

    .pt-card-grid-3,
    .pt-card-grid-4 {
        grid-template-columns: 1fr;
    }

    .pt-info-card,
    .pt-score-card,
    .pt-advice-card {
        padding: 20px;
        border-radius: 18px;
    }

    .pt-info-card strong {
        font-size: 24px;
    }

    .pt-device-content h2 {
        font-size: 29px;
    }

    .pt-device-content p,
    .pt-device-content ul,
    .pt-device-content ol {
        font-size: 17px;
    }
}
.percentop-device-archive {
    background: #ffffff;
    color: var(--pt-text);
}

.pt-archive-hero {
    padding: 76px 0 68px;
    background:
        radial-gradient(circle at top right, rgba(250, 204, 21, 0.18), transparent 34%),
        linear-gradient(135deg, #07111f 0%, #111827 55%, #020617 100%);
    color: #ffffff;
}

.pt-archive-hero-content {
    max-width: 820px;
}

.pt-archive-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(250, 204, 21, 0.14);
    color: var(--pt-yellow);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pt-archive-hero h1 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.pt-archive-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.75;
}

.pt-device-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.pt-device-archive-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--pt-border);
    border-radius: 24px;
    box-shadow: var(--pt-shadow-card);
}

.pt-device-archive-image {
    display: flex;
    min-height: 220px;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: var(--pt-muted);
    text-decoration: none;
}

.pt-device-archive-image img {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
}

.pt-device-archive-body {
    padding: 22px;
}

.pt-device-archive-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.pt-device-archive-meta span {
    display: inline-flex;
    padding: 6px 9px;
    border-radius: 999px;
    background: #fffbeb;
    color: #92400e;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pt-device-archive-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.pt-device-archive-card h3 a {
    color: var(--pt-text);
    text-decoration: none;
}

.pt-device-archive-card h3 a:hover {
    color: #0f62fe;
}

.pt-device-archive-excerpt {
    margin: 0 0 18px;
    color: var(--pt-muted);
    font-size: 15px;
    line-height: 1.65;
}

.pt-device-archive-prices {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
}

.pt-device-archive-prices div {
    padding: 14px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.pt-device-archive-prices span {
    display: block;
    margin-bottom: 5px;
    color: var(--pt-muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pt-device-archive-prices strong {
    display: block;
    color: var(--pt-text);
    font-size: 17px;
    line-height: 1.25;
}

.pt-device-archive-footer {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
}

.pt-device-archive-score span {
    display: block;
    color: var(--pt-muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pt-device-archive-score strong {
    display: block;
    margin-top: 3px;
    color: var(--pt-text);
    font-size: 22px;
    line-height: 1;
}

.pt-device-archive-status {
    padding: 8px 11px;
    border-radius: 999px;
    background: #dcfce7;
    color: #166534;
    font-size: 12px;
    font-weight: 800;
}

.pt-device-pagination {
    margin-top: 42px;
}

.pt-empty-state {
    padding: 40px;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

@media (max-width: 1024px) {
    .pt-device-archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .pt-archive-hero {
        padding: 50px 0;
    }

    .pt-device-archive-grid {
        grid-template-columns: 1fr;
    }

    .pt-device-archive-image,
    .pt-device-archive-image img {
        height: 210px;
    }
}

.pt-device-filter-form {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr auto;
    gap: 14px;
    align-items: end;
    margin: 0 0 30px;
    padding: 18px;
    border: 1px solid var(--pt-border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--pt-shadow-card);
}

.pt-filter-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--pt-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pt-filter-field input,
.pt-filter-field select {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid var(--pt-border);
    border-radius: 14px;
    background: #f8fafc;
    color: var(--pt-text);
    font-size: 15px;
}

.pt-filter-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pt-filter-actions button {
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 14px;
    background: var(--pt-dark);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.pt-filter-actions a {
    color: var(--pt-muted);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 900px) {
    .pt-device-filter-form {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .pt-device-filter-form {
        grid-template-columns: 1fr;
    }

    .pt-filter-actions {
        justify-content: space-between;
    }
}
.pt-faq-list {
    display: grid;
    gap: 14px;
    max-width: 900px;
}

.pt-faq-item {
    padding: 22px 24px;
    border: 1px solid var(--pt-border);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--pt-shadow-card);
}

.pt-faq-item h3 {
    margin: 0 0 10px;
    color: var(--pt-text);
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.pt-faq-item p {
    margin: 0;
    color: var(--pt-muted);
    font-size: 16px;
    line-height: 1.75;
}
.pt-price-tracker {
    margin-top: 20px;
}

.pt-price-tracker-filter {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 24px;
    padding: 18px;
    border: 1px solid var(--pt-border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--pt-shadow-card);
}

.pt-price-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--pt-border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--pt-shadow-card);
}

.pt-price-table {
    width: 100%;
    min-width: 1100px;
    border-collapse: collapse;
}

.pt-price-table th,
.pt-price-table td {
    padding: 15px 16px;
    border-bottom: 1px solid var(--pt-border);
    text-align: left;
    vertical-align: middle;
    font-size: 14px;
}

.pt-price-table th {
    background: #f8fafc;
    color: var(--pt-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pt-price-table tr:last-child td {
    border-bottom: 0;
}

.pt-price-device-name a {
    color: var(--pt-text);
    font-weight: 800;
    text-decoration: none;
}

.pt-price-device-name a:hover {
    color: #0f62fe;
}

.pt-price-status {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: #dcfce7;
    color: #166534;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.pt-price-view-link {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--pt-dark);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.pt-price-view-link:hover {
    color: #ffffff;
    opacity: 0.9;
}

@media (max-width: 900px) {
    .pt-price-tracker-filter {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .pt-price-tracker-filter {
        grid-template-columns: 1fr;
    }
}
.pt-repair-estimator {
    margin-top: 24px;
}

.pt-repair-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 24px;
    padding: 18px;
    border: 1px solid var(--pt-border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--pt-shadow-card);
}

.pt-repair-result {
    max-width: 680px;
    padding: 30px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(250, 204, 21, 0.18), transparent 34%),
        linear-gradient(135deg, #07111f 0%, #111827 60%, #020617 100%);
    color: #ffffff;
    box-shadow: var(--pt-shadow-soft);
}

.pt-repair-result span {
    display: block;
    margin-bottom: 10px;
    color: var(--pt-yellow);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pt-repair-result h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.pt-repair-result p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.7;
}

.pt-repair-result small {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.6;
}

.pt-repair-device-link {
    display: inline-flex;
    margin-top: 20px;
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--pt-yellow);
    color: #111827;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.pt-repair-device-link:hover {
    color: #111827;
    opacity: 0.9;
}

@media (max-width: 760px) {
    .pt-repair-form {
        grid-template-columns: 1fr;
    }
}
.percentop-home {
    background: #ffffff;
    color: var(--pt-text);
}

.pt-home-hero {
    padding: 86px 0 76px;
    background:
        radial-gradient(circle at top right, rgba(250, 204, 21, 0.18), transparent 34%),
        linear-gradient(135deg, #07111f 0%, #111827 55%, #020617 100%);
    color: #ffffff;
}

.pt-home-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 54px;
    align-items: center;
}

.pt-home-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(250, 204, 21, 0.14);
    color: var(--pt-yellow);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pt-home-hero h1 {
    max-width: 820px;
    margin: 0 0 20px;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.pt-home-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.75;
}

.pt-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.pt-home-primary-btn,
.pt-home-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.pt-home-primary-btn {
    background: var(--pt-yellow);
    color: #111827;
}

.pt-home-secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.pt-home-primary-btn:hover {
    color: #111827;
    opacity: 0.9;
}

.pt-home-secondary-btn:hover {
    color: #ffffff;
    opacity: 0.9;
}

.pt-home-hero-panel {
    display: grid;
    gap: 18px;
}

.pt-home-score-card {
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
}

.pt-home-score-card span {
    display: block;
    color: var(--pt-yellow);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pt-home-score-card strong {
    display: block;
    margin-top: 10px;
    color: #ffffff;
    font-size: 58px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.pt-home-score-card p {
    margin-top: 12px;
    font-size: 15px;
}

.pt-home-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.pt-home-mini-grid a {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-decoration: none;
}

.pt-home-mini-grid span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pt-home-mini-grid strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
}

.pt-home-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.pt-home-category-grid a {
    display: block;
    min-height: 150px;
    padding: 24px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--pt-border);
    box-shadow: var(--pt-shadow-card);
    text-decoration: none;
}

.pt-home-category-grid span {
    display: block;
    margin-bottom: 10px;
    color: var(--pt-text);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.pt-home-category-grid p {
    margin: 0;
    color: var(--pt-muted);
    font-size: 15px;
    line-height: 1.65;
}

.pt-home-section-link {
    margin-top: 30px;
}

.pt-home-section-link a {
    display: inline-flex;
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--pt-dark);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.pt-home-tool-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.pt-home-tool-card {
    padding: 34px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid var(--pt-border);
    box-shadow: var(--pt-shadow-card);
}

.pt-home-tool-card span {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fffbeb;
    color: #92400e;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pt-home-tool-card h2 {
    margin: 0 0 12px;
    color: var(--pt-text);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.pt-home-tool-card p {
    margin: 0;
    color: var(--pt-muted);
    font-size: 16px;
    line-height: 1.7;
}

.pt-home-tool-card a {
    display: inline-flex;
    margin-top: 22px;
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--pt-dark);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.pt-home-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.pt-home-post-card {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--pt-border);
    box-shadow: var(--pt-shadow-card);
}

.pt-home-post-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    background: #f1f5f9;
    color: var(--pt-muted);
    text-decoration: none;
}

.pt-home-post-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.pt-home-post-body {
    padding: 22px;
}

.pt-home-post-body h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.pt-home-post-body h3 a {
    color: var(--pt-text);
    text-decoration: none;
}

.pt-home-post-body p {
    margin: 0;
    color: var(--pt-muted);
    font-size: 15px;
    line-height: 1.65;
}

@media (max-width: 980px) {
    .pt-home-hero-grid,
    .pt-home-tool-grid {
        grid-template-columns: 1fr;
    }

    .pt-home-category-grid,
    .pt-home-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pt-home-hero {
        padding: 58px 0;
    }

    .pt-home-mini-grid,
    .pt-home-category-grid,
    .pt-home-post-grid {
        grid-template-columns: 1fr;
    }

    .pt-home-score-card {
        padding: 24px;
    }

    .pt-home-score-card strong {
        font-size: 46px;
    }
}