/* Home-only Public Relations cards: compact two-column layout.
   No URL, article, SEO, sorting or interaction logic is changed. */
.page-home .home-public-relations {
    position: relative;
}

.page-home .home-public-relations__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: clamp(16px, 1.8vw, 24px);
}

.page-home .home-pr-card {
    position: relative;
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 26px;
    background:
        radial-gradient(circle at 88% 8%, rgba(77, 222, 229, .105), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .03));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .15),
        0 20px 48px rgba(0, 0, 0, .23);
    backdrop-filter: blur(18px) saturate(132%);
    -webkit-backdrop-filter: blur(18px) saturate(132%);
    isolation: isolate;
}

.page-home .home-pr-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(112deg, transparent 8%, rgba(255, 255, 255, .065) 24%, transparent 42%);
    opacity: .48;
}

.page-home .home-pr-card--latest {
    border-color: rgba(89, 224, 232, .39);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .18),
        0 22px 54px rgba(0, 0, 0, .26),
        0 0 34px rgba(52, 202, 213, .075);
}

.page-home .home-pr-card__media,
.page-home .home-pr-card--latest .home-pr-card__media {
    position: relative;
    display: grid;
    place-items: center;
    min-width: 0;
    width: auto;
    aspect-ratio: 16 / 9;
    margin: 11px 11px 0;
    overflow: hidden;
    border-radius: 19px;
    background: #0a1117;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .11),
        0 14px 32px rgba(0, 0, 0, .27);
}

.page-home .home-pr-card__media-backdrop,
.page-home .home-pr-card__media-main {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.page-home .home-pr-card__media-backdrop {
    object-fit: cover;
    transform: scale(1.08);
    filter: blur(20px) saturate(.8) brightness(.4);
    opacity: .7;
}

.page-home .home-pr-card__media-main {
    z-index: 1;
    object-fit: contain;
    object-position: center;
    filter: saturate(.97) contrast(1.025);
    transition: transform .42s ease, filter .42s ease;
}

.page-home .home-pr-card__media:hover .home-pr-card__media-main {
    transform: scale(1.016);
    filter: saturate(1.04) contrast(1.04);
}

.page-home .home-pr-card__latest {
    position: absolute;
    z-index: 2;
    top: 13px;
    left: 13px;
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 0 11px;
    border: 1px solid rgba(147, 240, 244, .42);
    border-radius: 999px;
    background: rgba(7, 18, 24, .79);
    color: #b7f6f7;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
    box-shadow: 0 7px 18px rgba(0, 0, 0, .24);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
}

.page-home .home-pr-card__content {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(19px, 2vw, 27px) clamp(19px, 2vw, 27px) clamp(21px, 2.2vw, 30px);
}

.page-home .home-pr-card__content .glass-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 13px;
    margin-bottom: 10px;
    font-size: .75rem;
}

.page-home .home-pr-card__content h3,
.page-home .home-pr-card:not(.home-pr-card--latest) .home-pr-card__content h3 {
    width: 100%;
    max-width: none;
    margin: 0 0 11px;
    font-size: clamp(1.24rem, 1.75vw, 1.72rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
}

.page-home .home-pr-card__content h3 a {
    color: inherit;
}

.page-home .home-pr-card__teaser {
    width: 100%;
    max-width: none;
    margin: 0 0 17px;
    font-size: clamp(.88rem, 1vw, .98rem);
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.page-home .home-pr-card__content > .glass-link:last-child {
    margin-top: auto;
}

.page-home .home-selected-collaboration {
    padding-bottom: 18px;
}

@media (max-width: 900px) {
    .page-home .home-public-relations__list {
        grid-template-columns: 1fr;
        max-width: 760px;
        margin-inline: auto;
    }
}

@media (max-width: 680px) {
    .page-home .home-public-relations__list {
        gap: 15px;
    }

    .page-home .home-pr-card {
        border-radius: 23px;
    }

    .page-home .home-pr-card__media,
    .page-home .home-pr-card--latest .home-pr-card__media {
        margin: 9px 9px 0;
        border-radius: 17px;
    }

    .page-home .home-pr-card__content {
        padding: 18px 18px 22px;
    }

    .page-home .home-pr-card__content h3,
    .page-home .home-pr-card:not(.home-pr-card--latest) .home-pr-card__content h3 {
        font-size: clamp(1.22rem, 5.8vw, 1.55rem);
    }

    .page-home .home-pr-card__teaser {
        font-size: .92rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-home .home-pr-card__media-main {
        transition: none;
    }
}
