/* blog_post_modern.20042026.css */

.gb-post-page {
    position: relative;
}

/* HERO */
.gb-post-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 209, 0, 0.14);
    border-radius: 28px;
    margin-bottom: 30px;
    background:
        radial-gradient(circle at top right, rgba(255, 209, 0, 0.14), transparent 30%),
        linear-gradient(135deg, rgba(10, 16, 30, 0.96) 0%, rgba(14, 20, 38, 0.94) 55%, rgba(8, 12, 24, 0.98) 100%);
    background-size: cover;
    background-position: center;
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.34),
        inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.gb-post-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 12, 22, 0.96) 0%, rgba(7, 12, 22, 0.84) 48%, rgba(7, 12, 22, 0.56) 100%);
    pointer-events: none;
}

.gb-post-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 30px;
    align-items: center;
    padding: 34px;
}

.gb-post-hero__media {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.gb-post-hero__image {
    width: 100%;
    height: 100%;
    min-height: 320px;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.gb-post-hero__content {
    min-width: 0;
}

.gb-post-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.gb-post-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.gb-post-pill--game {
    color: #FFD100;
    background: rgba(255, 209, 0, 0.08);
    border-color: rgba(255, 209, 0, 0.22);
    text-decoration: none;
}

.gb-post-pill--game:hover {
    color: #101010;
    background: #FFD100;
    text-decoration: none;
}

.gb-post-hero__title {
    margin: 0 0 14px;
    color: #fff;
    font-size: 44px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.gb-post-hero__excerpt {
    margin: 0 0 18px;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.8;
}

.gb-post-hero__meta {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.7;
}

.gb-post-hero__meta strong {
    color: #fff;
    font-weight: 700;
}

/* LAYOUT */
.gb-post-layout {
    display: block;
}

.gb-post-main {
    min-width: 0;
}

/* GENERIC CARD */
.gb-post-card,
.gb-comments-card,
.gb-comment-form-card,
.gb-post-taxonomies,
.gb-post-nav__box,
.gb-mini-post,
.gb-post-section {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(14, 18, 34, 0.94) 0%, rgba(10, 14, 28, 0.97) 100%);
    box-shadow:
        0 14px 36px rgba(0, 0, 0, 0.24),
        inset 0 0 0 1px rgba(255, 255, 255, 0.015);
}

/* MAIN ARTICLE CARD */
.gb-post-card {
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 28px;
}

.gb-post-content {
    padding: 36px 34px 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.9;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    word-break: break-word;
}

.gb-post-content>*:first-child {
    margin-top: 0 !important;
}

.gb-post-content>*:last-child {
    margin-bottom: 0 !important;
}

.gb-post-content h1,
.gb-post-content h2,
.gb-post-content h3,
.gb-post-content h4,
.gb-post-content h5,
.gb-post-content h6 {
    color: #fff;
    line-height: 1.22;
    font-weight: 800;
    margin-top: 1.8em;
    margin-bottom: 0.7em;
    letter-spacing: -0.01em;
}

.gb-post-content h2 {
    font-size: 31px;
}

.gb-post-content h3 {
    font-size: 25px;
}

.gb-post-content h4 {
    font-size: 21px;
}

.gb-post-content p {
    margin-bottom: 1.15em;
    color: rgba(255, 255, 255, 0.84);
}

.gb-post-content ul,
.gb-post-content ol {
    margin: 0 0 1.2em 0;
    padding-left: 1.3em;
}

.gb-post-content li {
    margin-bottom: 0.55em;
    color: rgba(255, 255, 255, 0.84);
}

.gb-post-content strong,
.gb-post-content b {
    color: #fff;
    font-weight: 800;
}

.gb-post-content em,
.gb-post-content i {
    color: rgba(255, 255, 255, 0.92);
}

.gb-post-content a {
    color: #FFD100;
    text-decoration: underline;
    text-underline-offset: 3px;
    word-break: break-word;
}

.gb-post-content a:hover {
    color: #fff;
}

.gb-post-content blockquote {
    margin: 1.5em 0;
    padding: 20px 22px;
    border-left: 4px solid #FFD100;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.85;
}

.gb-post-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 18px auto;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.gb-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.4em 0;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
}

.gb-post-content table th,
.gb-post-content table td {
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 14px;
    color: rgba(255, 255, 255, 0.84);
    text-align: left;
}

.gb-post-content table th {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    font-weight: 800;
}

/* SHARE BAR */
.gb-post-sharebar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 20px 34px 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.gb-post-sharebar__label {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gb-post-sharebar__right {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gb-post-sharebar__right a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all .22s ease;
}

.gb-post-sharebar__right a:hover {
    color: #101010;
    background: #FFD100;
    border-color: #FFD100;
    text-decoration: none;
}

/* PREV / NEXT */
.gb-post-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 34px;
}

.gb-post-nav__col {
    min-width: 0;
}

.gb-post-nav__box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 120px;
    padding: 22px;
    border-radius: 22px;
    text-decoration: none;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.gb-post-nav__box:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 209, 0, 0.26);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
    text-decoration: none;
}

.gb-post-nav__box--next {
    text-align: right;
    align-items: flex-end;
}

.gb-post-nav__label {
    color: #FFD100;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.gb-post-nav__title {
    color: #fff;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 800;
}

/* SECTIONS */
.gb-post-section {
    padding: 28px;
    border-radius: 24px;
    margin-bottom: 30px;
}

.gb-post-section__head {
    margin-bottom: 20px;
}

.gb-post-section__title {
    margin: 0 0 8px;
    color: #fff;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 800;
}

.gb-post-section__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.75;
}

/* MINI POST CARDS */
.gb-post-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gb-mini-post {
    overflow: hidden;
    border-radius: 22px;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.gb-mini-post:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 209, 0, 0.26);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.gb-mini-post__image-link {
    display: block;
    height: 190px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.gb-mini-post__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .34s ease;
}

.gb-mini-post:hover .gb-mini-post__image {
    transform: scale(1.05);
}

.gb-mini-post__content {
    padding: 18px 18px 20px;
}

.gb-mini-post__game {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
    background: rgba(255, 209, 0, 0.08);
    border: 1px solid rgba(255, 209, 0, 0.18);
    color: #FFD100;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.gb-mini-post__game:hover {
    color: #101010;
    background: #FFD100;
    text-decoration: none;
}

.gb-mini-post__title {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
}

.gb-mini-post__title a {
    color: #fff;
    text-decoration: none;
}

.gb-mini-post__title a:hover {
    color: #FFD100;
}

.gb-mini-post__excerpt {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.72;
}

/* COMMENTS */
.gb-comments-card {
    padding: 22px;
    border-radius: 24px;
}

.gb-comments-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gb-comment {
    padding: 18px 18px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.gb-comment__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.gb-comment__name {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
}

.gb-comment__date {
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    font-weight: 700;
}

.gb-comment__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.80);
    font-size: 14px;
    line-height: 1.8;
}

.gb-comments-empty {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
    line-height: 1.8;
}

/* COMMENT FORM */
.gb-comment-form-card {
    padding: 24px;
    border-radius: 24px;
}

.gb-form-control {
    min-height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: #fff;
    padding: 14px 16px;
    box-shadow: none;
}

.gb-form-control:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 209, 0, 0.28);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 209, 0, 0.08);
}

.gb-form-control::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

textarea.gb-form-control {
    min-height: 170px;
    resize: vertical;
    padding-top: 16px;
}

/* TAXONOMIES */
.gb-post-taxonomies {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding: 24px;
    border-radius: 24px;
}

.gb-post-taxonomies__block {
    min-width: 0;
}

.gb-post-taxonomies__title {
    margin: 0 0 14px;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
}

.gb-post-taxonomies__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gb-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all .22s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gb-chip--category {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

.gb-chip--category:hover {
    color: #101010;
    background: #FFD100;
    border-color: #FFD100;
    text-decoration: none;
}

.gb-chip--hashtag {
    color: #9ec8ff;
    background: rgba(83, 145, 255, 0.08);
    border-color: rgba(83, 145, 255, 0.18);
}

.gb-chip--hashtag:hover {
    color: #fff;
    background: rgba(83, 145, 255, 0.18);
    border-color: rgba(83, 145, 255, 0.35);
    text-decoration: none;
}

/* SMALL POLISH FOR EXISTING THEME CONTENT */
.blog-content.g b-post-content iframe,
.gb-post-content iframe,
.gb-post-content video {
    max-width: 100%;
    border-radius: 18px;
    overflow: hidden;
}

.gb-post-content hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 1.8em 0;
}

/* RESPONSIVE */
@media (max-width: 1399px) {
    .gb-post-hero__inner {
        grid-template-columns: 380px minmax(0, 1fr);
    }

    .gb-post-hero__title {
        font-size: 40px;
    }
}

@media (max-width: 1199px) {
    .gb-post-hero__inner {
        grid-template-columns: 1fr;
    }

    .gb-post-hero__image {
        min-height: 280px;
        max-height: 380px;
    }

    .gb-post-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gb-post-taxonomies {
        grid-template-columns: 1fr;
    }

    .gb-post-hero__title {
        font-size: 36px;
    }

    .gb-post-content {
        padding: 30px 28px 22px;
    }

    .gb-post-sharebar {
        padding: 18px 28px 24px;
    }
}

@media (max-width: 767px) {
    .gb-post-hero {
        border-radius: 24px;
    }

    .gb-post-hero__inner {
        padding: 24px;
        gap: 22px;
    }

    .gb-post-hero__title {
        font-size: 30px;
    }

    .gb-post-hero__excerpt {
        font-size: 15px;
    }

    .gb-post-content {
        padding: 24px 22px 20px;
        font-size: 15px;
        line-height: 1.85;
    }

    .gb-post-sharebar {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 22px 22px;
    }

    .gb-post-nav {
        grid-template-columns: 1fr;
    }

    .gb-post-section {
        padding: 22px;
        border-radius: 22px;
    }

    .gb-post-section__title {
        font-size: 25px;
    }

    .gb-comments-card,
    .gb-comment-form-card,
    .gb-post-taxonomies {
        padding: 20px;
    }

    .gb-comment__top {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .gb-post-hero__inner {
        padding: 18px;
    }

    .gb-post-hero__image {
        min-height: 220px;
        max-height: 280px;
    }

    .gb-post-hero__title {
        font-size: 25px;
    }

    .gb-post-cards-grid {
        grid-template-columns: 1fr;
    }

    .gb-mini-post__image-link {
        height: 180px;
    }

    .gb-post-content h2 {
        font-size: 26px;
    }

    .gb-post-content h3 {
        font-size: 22px;
    }

    .gb-post-content h4 {
        font-size: 19px;
    }

    .gb-post-content {
        padding: 20px 18px 18px;
    }

    .gb-post-sharebar {
        padding: 16px 18px 20px;
    }

    .gb-post-sharebar__right {
        width: 100%;
    }

    .gb-post-sharebar__right a {
        flex: 1 1 auto;
    }

    .gb-post-section {
        padding: 18px;
    }

    .gb-comments-card,
    .gb-comment-form-card,
    .gb-post-taxonomies {
        padding: 16px;
    }

    .gb-post-pill {
        font-size: 12px;
    }
}

/* LINKED SERVICE BOX */
.gb-linked-service {
    position: relative;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    overflow: hidden;
    margin-bottom: 30px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 209, 0, 0.16);
    background:
        radial-gradient(circle at top right, rgba(255, 209, 0, 0.12), transparent 32%),
        linear-gradient(135deg, rgba(14, 18, 34, 0.96) 0%, rgba(10, 14, 28, 0.98) 100%);
    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.26),
        inset 0 0 0 1px rgba(255, 255, 255, 0.015);
}

.gb-linked-service__glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 209, 0, 0.10);
    filter: blur(16px);
    pointer-events: none;
}

.gb-linked-service__media {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 180px;
}

.gb-linked-service__image {
    width: 100%;
    height: 100%;
    min-height: 180px;
    max-height: 220px;
    object-fit: cover;
    display: block;
}

.gb-linked-service__image-placeholder {
    width: 100%;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(255, 209, 0, 0.10) 0%, rgba(255, 255, 255, 0.03) 100%);
    color: #FFD100;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.gb-linked-service__content {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.gb-linked-service__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 12px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(255, 209, 0, 0.08);
    border: 1px solid rgba(255, 209, 0, 0.18);
    color: #FFD100;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gb-linked-service__title {
    margin: 0 0 10px;
    color: #fff;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}

.gb-linked-service__text {
    margin: 0 0 18px;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.8;
}

.gb-linked-service__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.gb-linked-service:hover {
    border-color: rgba(255, 209, 0, 0.28);
    box-shadow:
        0 20px 42px rgba(0, 0, 0, 0.30),
        0 0 24px rgba(255, 209, 0, 0.06);
}

@media (max-width: 991px) {
    .gb-linked-service {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 20px;
    }

    .gb-linked-service__title {
        font-size: 25px;
    }

    .gb-linked-service__media {
        min-height: unset;
    }

    .gb-linked-service__image {
        max-height: 260px;
    }
}

@media (max-width: 575px) {
    .gb-linked-service {
        padding: 16px;
        border-radius: 20px;
    }

    .gb-linked-service__title {
        font-size: 22px;
    }

    .gb-linked-service__text {
        font-size: 14px;
    }

    .gb-linked-service__image,
    .gb-linked-service__image-placeholder {
        min-height: 160px;
    }
}