body:has(.pc-examples-page) {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body:has(.pc-examples-page) main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

body:has(.pc-examples-page) .site-footer {
    margin-top: 0;
}

.pc-examples-page {
    flex: 1 0 auto;
    padding: 2rem 0 1.2rem;
    background: linear-gradient(180deg, #f6f9fd 0%, #eef4fb 100%);
}

.pc-examples-page__container {
    max-width: 1080px;
    display: grid;
    gap: 1rem;
}

.pc-examples-hero {
    border: 1px solid #d3deea;
    border-radius: 14px;
    padding: 1.15rem 1.2rem;
    background: linear-gradient(165deg, #ffffff 0%, #f4f9ff 55%, #eef4fc 100%);
    box-shadow: 0 14px 28px rgba(22, 39, 58, 0.08);
}

.pc-examples-hero__eyebrow {
    margin: 0;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    color: #41566e;
}

.pc-examples-hero__title {
    margin: 0.35rem 0 0;
    font-size: clamp(1.5rem, 3.6vw, 2.1rem);
    line-height: 1.18;
    color: #0e2338;
}

.pc-examples-hero__lead {
    margin: 0.62rem 0 0;
    color: #20374e;
    font-size: 1rem;
    line-height: 1.56;
    max-width: 74ch;
}

.pc-examples-hero__cta-wrap {
    margin-top: 16px;
}

.pc-examples-hero__cta {
    display: inline-block;
    min-height: 44px;
    margin-bottom: 10px;
    padding: 0.64rem 1rem;
    border-radius: 999px;
    border: 0;
    background: linear-gradient(135deg, #1f67b3 0%, #1e7fd0 52%, #1b93e3 100%);
    color: #ffffff;
    font-size: 0.97rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 18px rgba(25, 107, 175, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.pc-examples-hero__cta:hover,
.pc-examples-hero__cta:focus-visible {
    background: linear-gradient(135deg, #1b5ca0 0%, #1a72b8 52%, #187fcd 100%);
    box-shadow: 0 11px 22px rgba(25, 107, 175, 0.33);
    transform: translateY(-1px);
}

.pc-examples-hero__cta:focus-visible {
    outline: 3px solid rgba(27, 127, 205, 0.34);
    outline-offset: 2px;
}

.pc-examples-hero__cta-sub {
    margin-top: 6px;
    color: #3a4d62;
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.8;
}

.pc-examples-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.pc-example-card {
    border: 1px solid #d3deea;
    border-radius: 14px;
    background: #ffffff;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
    box-shadow: 0 10px 22px rgba(22, 39, 58, 0.08);
}

.pc-example-card__image-link {
    display: block;
    text-decoration: none;
    background: #f1f6fc;
}

.pc-example-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.pc-example-card__image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a6e84;
    font-size: 0.88rem;
    background: linear-gradient(180deg, #edf3fa 0%, #e7eef6 100%);
}

.pc-example-card__body {
    padding: 0.82rem;
    display: grid;
    gap: 0.4rem;
    align-content: start;
}

.pc-example-card__label {
    margin: 0;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 800;
    color: #41566e;
}

.pc-example-card__subline {
    margin: 0;
    color: #1d344c;
    font-size: 0.96rem;
    font-weight: 700;
}

.pc-example-card__value {
    margin: 0.1rem 0 0;
    color: #0f2740;
    font-size: 1.02rem;
    font-weight: 800;
}

.pc-example-card__teaser {
    margin: 0.1rem 0 0;
    color: #35506b;
    font-size: 0.9rem;
    line-height: 1.48;
}

.pc-example-card__cta {
    margin-top: 0.25rem;
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    color: #1a5da2;
}

.pc-example-card__cta:hover,
.pc-example-card__cta:focus-visible {
    text-decoration: underline;
}

.pc-examples-empty {
    border: 1px solid #d3deea;
    border-radius: 14px;
    background: #ffffff;
    padding: 1rem;
}

.pc-examples-empty__title {
    margin: 0;
    color: #0f2740;
    font-size: 1.08rem;
}

.pc-examples-empty__text {
    margin: 0.55rem 0 0.8rem;
    color: #35506b;
    line-height: 1.5;
}

.pc-examples-seo {
    border: 1px solid #d3deea;
    border-radius: 14px;
    background: #ffffff;
    padding: 1rem;
}

.pc-examples-seo__title {
    margin: 0;
    color: #0f2740;
    font-size: 1.08rem;
}

.pc-examples-seo__text {
    margin: 0.55rem 0 0;
    color: #35506b;
    font-size: 0.95rem;
    line-height: 1.55;
}

.pc-examples-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
}

.pc-examples-pagination__link {
    display: inline-block;
    min-width: 2.1rem;
    text-align: center;
    padding: 0.36rem 0.55rem;
    border: 1px solid #c4d6e8;
    border-radius: 8px;
    text-decoration: none;
    color: #1a4165;
    background: #ffffff;
    font-weight: 700;
}

.pc-examples-pagination__link:hover,
.pc-examples-pagination__link:focus-visible {
    border-color: #1b6ab7;
    color: #114f89;
}

.pc-examples-pagination__link--current {
    background: #1e7fd0;
    border-color: #1e7fd0;
    color: #ffffff;
}

.pc-examples-pagination__link--disabled {
    color: #7a8ea3;
    border-color: #d7e1eb;
    background: #f7f9fc;
}

@media (max-width: 1000px) {
    .pc-examples-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .pc-examples-hero {
        padding: 1rem;
    }

    .pc-examples-grid {
        grid-template-columns: 1fr;
    }

    .pc-examples-hero__cta {
        width: 100%;
        border-radius: 12px;
    }
}
