html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {

    html {
        margin-top: 0 !important;
    }

}

/* new hero-section { */

.main-block {
    position: relative;
    padding: 8rem 0;
    background-attachment: fixed;
    border: none !important;
    background-size: cover;
    background-position: bottom;
}

.more-info-btn {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    color: #fffa;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    animation: bounce-vertical 4s ease infinite;
    cursor: pointer;
    transition: .2s;
}

.more-info-btn:hover {
    color: #fff;
}

.more-info-btn svg {
    width: 32px;
    height: 32px;
}

@keyframes bounce-vertical {

    50%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    75% {
        transform: translateX(-50%) translateY(10px);
    }
}

@media (max-width: 768px) {
    .more-info-btn {
        bottom: 1rem;
        font-size: 0.9rem;
    }

    .more-info-btn svg {
        width: 24px;
        height: 24px;
    }
}


.main-block:after {
    content: '';
    background: #0028;
    position: absolute;
    mix-blend-mode: hard-light;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.main-block-content * {
    z-index: 2;
}

.error-404 .main-block {
    padding: 0;
}

.ip-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

img.flag {
    border-radius: 100px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.ip-address {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #fff;
    font-weight: 700;
    font-size: 4.5rem;
    line-height: 1;
    width: 100%;
}

.ip-address.small {
    font-size: 2.8rem;
}

.btn {
    color: #fff;
    border-radius: 100px;
    background: #fff2;
    border: 1px solid #fff3;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    width: auto;
    aspect-ratio: auto;
    height: 42px;
    font-size: 1rem;
    line-height: 1;
    text-wrap: nowrap;
    will-change: transform;
    font-weight: 400;
    transition: .2s;
}

.btn:hover {
    background: #fff4;
    transform: scale(0.98);
}

.btn:active {
    background: #fff5;
    transform: scale(0.9);
}

.btn svg,
.btn img {
    height: 100%;
    width: auto;
    aspect-ratio: auto;
}

.ip-address-additional {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.restart-btn {
    height: 42px;
}

.mobile-buttons {
    display: none;
}

.copy-ip {
    aspect-ratio: 1/1;
    width: 54px;
    height: 54px;
    padding: 0.75rem;
    border-radius: 100px;
    background: #fff2;
    border: 1px solid #fff3;
    transition: .2s;
}

.copy-ip svg {
    width: 100%;
    height: 100%;
}

.copy-ip:hover {
    background: #fff4;
    transform: scale(0.98);
}

.copy-ip:active {
    background: #fff5;
    transform: scale(0.9);
}



svg path {
    fill: currentColor;
}

.location-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
}

.ip-info-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 3rem;
}

.connection-details-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: row;
    width: 100%;
    gap: .75rem;
    margin: 0;
}

.short-elements {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
}

.connection-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 3rem;
    padding: 2rem;
    background: #0006;
    color: #fff;
    border: none;
    outline: 1px solid #fff2;
    outline-offset: -1px;
    border-radius: 1.25rem;
    align-items: center;
    backdrop-filter: blur(4px);
}


.connection-label {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
    min-width: 25%;
}

.connection-value {
    font-weight: 700;
    line-height: 1.3;
}


.connection-label img {
    --size: 30px;
    width: var(--size);
    height: var(--size);
    /* 		filter: hue-rotate(-66deg) saturate(5); */
}


.connection-item.short {
    flex-direction: row;
    padding: 1rem 1rem 1rem 1.5rem;
    gap: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
    width: 100%;
}

.connection-item-wrap {
    width: 100%;
}

.connection-item-popup-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    width: 100%;
}

.proxy-connection-item {
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.proxy-popup-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    margin: 0rem auto -0.75rem;
    background: linear-gradient(-90deg, #a0080875, #49010166 80%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    padding: 6px 16px 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(214, 255, 232, 0.2);
    color: #fff;
    text-decoration: none;
    transition: 0.5s ease;
}

.proxy-popup-link::before {
    content: '';
    position: absolute;
    top: -0.4rem;
    left: 50%;
    width: 0.75rem;
    height: 0.75rem;
    background: #290418;
    border-top: 1px solid rgba(214, 255, 232, 0.2);
    border-left: 1px solid rgba(214, 255, 232, 0.2);
    transform: translateX(-50%) rotate(45deg);
    transition: 0.5s ease;
}

.proxy-popup-link:hover {
    background-position: 100% 0%;
    transform: translateY(-1px);
    box-shadow: 0 22px 38px rgba(5, 44, 25, 0.34);
}

.proxy-popup-link:hover::before {
    background: #3d071a;
}

.proxy-popup-link__label {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.proxy-popup-link__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.proxy-popup-link__icon img {
    width: 1.25rem;
    height: 1.25rem;
}

.connection-item.short span {
    font-weight: 500;
    width: 100%;
}

.connection-item.short img {
    /* 	display: none; */
    width: 32px;
    height: 32px;
}

.connection-value {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    flex-shrink: 0;
}

.connection-item.short .connection-value span {
    font-weight: 800;
}

.false {
    background: linear-gradient(-90deg, #49010166, #0006 80%);
}

.true {
    background: linear-gradient(-90deg, #03490122, #00000066 80%);
}

@media (max-width: 768px) {

    .ip-address {
        font-size: 2.5rem;
    }

    .ip-address.small {
        font-size: 1.5rem;
    }

    .main-block {
        background-image: url('/wp-content/themes/whoerip/assets/../assets/images/main-bg.webp');
        background-size: auto;
        padding: 2rem 0;
    }

    .connection-item:not(.short) {
        padding: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .location-info {
        font-size: 1.25rem;
        gap: 0.5rem;
    }

    img.flag {
        --size: 24px;
        width: var(--size);
        height: var(--size);
    }

    .copy-ip,
    .restart-btn {
        display: none;
    }

    .mobile-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        row-gap: 1rem;
        margin: auto;
    }

    .mobile-buttons button {
        display: flex !important;
    }

    .mobile-buttons button svg {
        width: 100%;
        height: 100%;
    }

    .mobile-buttons button:active {
        background: #fff4;
        transform: scale(0.95);
    }


}

/* } new hero-section */



/* product categories tabs { */

.resources-page {
    margin-top: 5rem;
}

.resource-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #0002;
    overflow: clip;
}

.resource-card-image {
    background: #f9f9f9;
    position: relative;
}


.article-card-image {
    height: 150px;
    width: 100%;
    object-fit: contain;
    object-position: center;
    padding: 2rem;
    box-sizing: border-box;
    display: block;
    margin: 0 auto;
}

.recommend-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.5rem .8rem;
    border-radius: 0.5rem;
    background: var(--accent-color);
    color: #fff;
    line-height: 1;
    font-size: 0.8rem;
}

.resource-card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    padding: 1rem;
}

.resource-card-content h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-color);
    font-weight: 700;
}

.resource-card-content p {
    height: 100%;
    color: var(--text-color-light);
    margin: 0;
}

.resource-card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #fff;
    background: var(--accent-color);
    padding: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 0.5rem;
    transition: .2s;
}

.resource-card-link:hover {
    background: var(--accent-color-hover);
    transform: translateY(-2px);
}

.resource-card-link svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* } product categories tabs */

/* resources section { */

.resources-nav {
    margin: 0 auto 2rem;
    width: fit-content;
}

.resources-nav-list {
    display: flex;
    gap: .25rem;
    padding: .5rem;
    border: 1px solid #0003;
    border-radius: 1.25rem;
}

.resources-nav-item {
    padding: .75rem 1.5rem;
    transition: .2s;
    border-radius: .75rem
}

.resources-nav-item.active {
    background: var(--accent-color);
    color: #fff;
}

.resources-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.section-description {
    max-width: 80%;
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-color-light);
    text-wrap: balance;
}

.content-section {
    margin: 2rem 0 3rem 0;
}

.load-more-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {


    .resources-page {
        margin-top: 2rem;
    }

    .resources-nav-list {
        overflow-x: auto;
        max-width: var(--sitewidth);
    }

    .resources-nav-item {
        text-wrap: nowrap;
    }

    .resources-grid {
        display: flex;
        flex-direction: column;
    }

    .section-description {
        max-width: 100%;
    }
}


/* } resources section */

/* single resource page { */


.article-thumbnail {
    width: 100%;
    height: 300px;
    border-radius: 1rem;
    background-color: #f9f9f9;
    object-fit: contain;
    object-position: center;
    padding: 5rem 2rem;
    box-sizing: border-box;
    /* Для SVG обеспечиваем минимальный размер */
    min-height: 200px;
    display: block;
    margin: 0 auto;
}


.article-title {
    font-size: 3rem;
    margin: 1rem 0;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-title .verified-badge {
    width: 32px;
    height: 32px;
    background: #0e9531;
    border-radius: 50%;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: #fff;
    margin-top: 8px;
}

.article-title .verified-badge svg {
    width: 32px;
    height: 32px;
}

.article-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem 0.75rem 1.25rem;
    background: var(--accent-color);
    color: #fff !important;
    border-radius: 0.5rem;
    transition: .2s;
}


.article-button svg {
    --size: 24px;
    width: var(--size);
    height: var(--size);
}

.article-button:hover {
    background: var(--accent-color-hover);
    transform: translateY(-2px);
}


@media (max-width: 768px) {

    .article-thumbnail {
        height: 200px;
        min-height: 150px;
        padding: 1rem 1rem;
    }

    .article-thumbnail[src*=".svg"] {
        padding: 2rem;
    }

    .blog-page-layout.article-page {
        flex-direction: column;
    }

    .article-title {
        line-height: 1;
        font-size: 2rem;
    }

    .article-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0rem;
    }
}



/* } single resource page */

/* ip insights section { */

.section-header h2 {
    font-weight: 700;
}

.section-header svg {
    --size: 42px;
    color: var(--accent-color);
    width: var(--size);
    height: var(--size);
}

.user-ip.small {
    font-size: 1rem;
}

/* } ip insights section */


/* insights section { */

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem
}

#location-section {
    grid-column: span 2;
}

#hardware-section {
    grid-row: span 2;
}

#location-section .info-grid {
    grid-template-rows: repeat(4, auto);
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: column;
}

.info-section {
    background-color: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    border: 2px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-content: space-between;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: #0f172a;
}

.section-icon {
    width: 2rem;
    height: 2rem;
}

.info-grid {
    display: grid;
    column-gap: 1rem;
}

.info-row {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 0;
    border-bottom: 1px dashed #d1d5db;
}

.info-row:last-child {
    border: none;
    padding-bottom: 0;
}

.info-label {
    font-size: 12px;
    color: #78716c;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.info-value {
    text-wrap: balance;
    word-wrap: normal;
    font-weight: 600;
    word-break: break-word;
}

.ip-insights-section {
    background-color: white;
    padding: 2rem 0;
}

.info-row:last-child,
.no-border {
    border: none;
    padding-bottom: 0;
}

/* } insights section */


/* blog section { */

.main-blog-slider {
    margin-top: 2rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    border: 1px solid #0002;
    overflow: clip;
    position: relative;
    transition: .2s;
}

.blog-card:hover {
    transform: scale(0.98);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.blog-card-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    aspect-ratio: unset;
    flex-shrink: 0;
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    padding-top: 0.75rem;
    height: 100%;
}

.blog-card-title {
    color: inherit;
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
}

.blog-card-excerpt {
    color: var(--text-color-light);
    height: 100%;
    margin-bottom: 0.5rem;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.blog-card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1;
    color: var(--text-color-light);
}

.blog-card-meta-item svg {
    --size: 1.25rem;
    width: var(--size);
    height: var(--size);
}

.new-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.5rem .8rem;
    border-radius: 0.5rem;
    background: var(--accent-color);
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    font-size: 0.8rem;
    box-shadow: 0 0 20px 0 #000a;
}

.blog-card-categories {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    top: 180px;
    z-index: 10;
}

.blog-card-category {
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    color: #aa0015;
    background: #fff2f4;
    z-index: 10;
}


/* } blog section */

/* faq section { */

.faq-container {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-accordion-item {
    border: 1px solid #0002;
    border-radius: 1rem;
    background: var(--bg-light-color);
    overflow: clip;
    transition: .2s;
}

.faq-accordion-item.active {
    background: #fff7f8;
    border-color: var(--accent-color);
}

.faq-accordion-title {
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem;
    padding-left: 1.5rem;
    margin: 0 !important;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-accordion-trigger:focus {
    background-color: var(--bg-light-color);
    outline: none;
}

.faq-accordion-trigger:hover {
    background-color: var(--bg-light-color);
}

.faq-question-text {
    display: flex;
    align-items: center;
}

.faq-question-text {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.faq-accordion-item svg {
    --size: 1.5rem;
    width: var(--size);
    height: var(--size);
    flex-shrink: 0;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
}

.faq-accordion-item.active svg {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.faq-accordion-content {
    display: block;
    height: 0px;
    max-height: 0px;
    padding: 0 1.5rem;
    position: relative;
    overflow: clip;
    transition: .3s;
}

.active .faq-accordion-content {
    height: auto;
    padding: 1.5rem;
    padding-top: 0rem;
    max-height: 1000px;
}

.faq-answer-text {
    color: #333;
    white-space: pre-wrap;
    line-height: 1.6;
    margin: 0 !important;
}

@media (max-width: 768px) {

    .faq-accordion-title {
        padding: 1rem 1.25rem;
    }

    .faq-accordion-content {
        padding: 0 1.25rem;
    }

    .active .faq-accordion-content {
        padding-top: 0 !important;
        padding: 1rem 1.25rem;
    }

    .faq-question-text {
        font-size: 1.1rem;
    }

    .faq-answer-text {
        font-size: 0.9rem;
    }
}

/* } faq section */

/* blog page section { */


/* featured post section */
.featured-post {
    position: relative;
    overflow: hidden;
}

.featured-post-cover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}


.featured-post-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #010325aa;
    z-index: 2;
}


.featured-post-container a {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    width: var(--sitewidth);
    height: 100%;
    margin: auto;
    padding: 12rem 0 4rem;
}

.featured-flag {
    padding: 0.75rem 1rem;
    line-height: 1;
    background: var(--accent-color);
    color: #fff;
    width: fit-content;
    border-radius: 0.5rem;
}


.featured-post-title {
    color: #fff;
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
    text-wrap: balance;
}

.featured-post-excerpt {
    width: 70%;
    color: #fff;
    font-size: 1.5rem;
    text-wrap: balance;
}

.featured-meta {
    display: flex;
    gap: 1.5rem;
    color: #cac8d2;
    flex-wrap: wrap;
}

.featured-meta>* {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-meta svg {
    --size: 32px;
    width: var(--size);
    height: var(--size);
}

@media (max-width: 768px) {

    .featured-post-container a {
        position: relative;
        padding: 2rem 1rem;
        width: 100%;
    }

    .featured-post-title {
        font-size: 2rem;
    }

    .featured-post-excerpt {
        width: 100%;
        font-size: 1rem;
    }


    .featured-meta svg {
        --size: 24px;
    }
}

/* categories */
.blog-categories {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}


.category-btn {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border: 1px solid #d4d4d4;
    border-radius: .75rem;
    background-color: #fff;
    color: #1e293b;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s;
}

.category-btn:not(.active):hover {
    border-color: #dc2626;
    transform: scale(0.96);
}

.category-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px #f87171
}

.category-btn .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1rem;
    height: 1rem;
    border-radius: .5rem;
    background-color: rgba(220, 38, 38, .2);
    margin-right: .625rem
}

.category-btn .dot {
    width: .625rem;
    height: .625rem;
    background-color: #dc2626;
    border-radius: 50%
}

.category-btn.active {
    background-color: #dc2626;
    color: #fff;
    border-color: #dc2626
}

.category-btn.active .icon {
    background-color: #fff
}

.category-btn.active .dot {
    background-color: #dc2626
}

.category-btn .category-btn-text {
    font-weight: 600;
    line-height: 1;
}


/*  */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .blog-categories {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid #0002;
        justify-content: flex-start;
    }

    .category-btn {
        flex-shrink: 0;
        text-wrap: nowrap;
        white-space: nowrap;
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
        border-radius: 0.5rem;
        border-color: #0002;
        background: #fff;
    }
}

/* } blog page section */


/* blog single section { */


.blog-page-content a {
    color: #d91e2b;
}

.post-header {
    position: relative;
    height: 60dvh;
    overflow: clip;

    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: flex-end;
    padding: 2rem 0;
}

.post-header:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0, #002 0%, #002c 25%, #0020 80%);
    /* 	background: radial-gradient(ellipse at 30% bottom, #002 0%, #002d 20%, #0020 80%); */
    z-index: 1;
}

.post-header .post-info {
    display: flex;
    flex-direction: column;
    width: var(--sitewidth);
    margin: 0 auto;
    gap: 1.5rem;
}

.post-header * {
    position: relative;
    z-index: 10;
}

.post-header .post-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.post-header .post-title {
    color: var(--bg-text-color);
    margin: 0;
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
    text-wrap: balance;
}

.post-header .post-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.post-header .post-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.post-header .post-meta .category-btn {
    background: #fff2;
    color: #fff;
    border: 1px solid #fff3;
}

.post-meta-additional {
    display: flex;
    gap: 1rem;
}

.post-header .meta-item {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: #cac8d2;
}

.post-header .meta-item svg {
    --size: 24px;
    width: var(--size);
    height: var(--size);
}


h1.post-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    text-wrap: balance;
}


.post-author-avatar {
    --size: 48px;
    width: var(--size);
    height: var(--size);
    border-radius: 100rem;
    outline: 1px solid var(--accent-color);
    border: 2px solid transparent;
}

.author-block {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
    width: fit-content;
    flex-grow: 0;
    margin-bottom: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.author-info * {
    line-height: 1 !important;
    margin: 0 !important;
}

.author-name {
    display: flex;
    align-items: center;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    gap: 0.5rem;
    color: var(--accent-color);
}

.author-tagline {
    color: #000a;
}

.author-name a {
    color: #000;
    transition: .2s;
}

.author-name svg {
    --size: 18px;
    width: var(--size);
    height: var(--size);
}

.author-name a:hover {
    color: #0077b5;
    transform: scale(1.2);
}

.author-tagline {
    font-size: .9rem;
}

/* Big author card styles */
.author-block.big {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light-color);
    border-radius: 0.75rem;
    border: 1px solid #e4e4e7;
    max-width: var(--sitewidth);
    width: var(--sitewidth);
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    align-items: flex-start;
}

.author-block.big .author-header {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
    width: 100%;
}

.author-block.big .post-author-avatar {
    --size: 64px;
}

.author-block.big .author-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.author-block.big .author-description {
    margin-top: 0.5rem;
    color: #374151;
    line-height: 1.6;
}


.blog-page-layout {
    display: grid;
    grid-template-columns: 850px auto;
    gap: 1.5rem;
    margin: 2rem auto;
    text-wrap: pretty;
}

h1.entry-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.5rem;
    margin-bottom: 2rem;
}

.blog-page-content h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 2rem;
    margin: 2rem 0 1rem;
}

.blog-page-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.75rem;
    margin: 2rem 0 1rem;
}


.blog-page-content li,
.blog-page-content ol,
.blog-page-content ul {
    padding: revert;
    margin: revert;
    line-height: 1.7 !important;
    list-style: inherit;
}

.blog-page-content p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-page-content figure:has(img):not(:has(table)) {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100% !important;
    text-align: center;
    margin: 2rem 0;
    gap: 1rem;
}

.blog-page-content figcaption {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-color-light);
    text-align: center;
    text-wrap: balance;
}


.blog-page-content figure img {
    border-radius: 1rem;
    border: 1px solid #0001;
}

.blog-page-content>*:first-child {
    margin-top: 0;
}

.blog-page-content>*:last-child {
    margin-bottom: 0;
}


.blog-page-sidebar {
    position: sticky;
    top: 1rem;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-bar .blog-page-sidebar {
    top: 3rem;
}


blockquote {
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    border-left-width: 5px;
    border-left-style: solid;
    border-left-color: #4b90e3;
    background: #4b90e322;
    text-wrap: pretty;
    color: #000;
    margin: 1rem 0;
}

blockquote.is-style-red {
    border-color: #dc2626;
    background: #dc262622;
}

blockquote p {
    margin: 0 !important;
}

/* Conclusion Block Styles */
.wp-block-myip-conclusion {
    padding: 1.5rem 1.25rem;
    border-radius: 0.75rem;
    background: #f7f7f7;
    color: #000;
    margin: 1.5rem 0;
    position: relative;
}


.wp-block-myip-conclusion>*:first-child {
    margin-top: 0 !important;
}

.wp-block-myip-conclusion>*:last-child {
    margin-bottom: 0 !important;
}


/* Responsive Tables with Horizontal Scroll */
.wp-block-table {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 1rem;
    outline: 1px solid #e5e7eb;
    outline-offset: -1px;
}

.wp-block-table table {
    min-width: 100%;
    border-collapse: collapse;
    width: 100%;
}

.wp-block-table table.has-fixed-layout {
    table-layout: auto;
    width: max-content;
    min-width: 100%;
}

.wp-block-table thead th,
.wp-block-table thead td,
.wp-block-table tbody th,
.wp-block-table tbody td {
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    text-align: left;
    vertical-align: top;
    word-wrap: break-word;
    min-width: 120px;
}

.wp-block-table thead th,
.wp-block-table thead td {
    background-color: var(--bg-light-color);
    font-weight: 600;
    color: #151a20;
}

.wp-block-table tbody td {
    background-color: #fff;
    color: #323741;
}

.wp-block-table tbody tr:nth-child(even) td {
    background-color: var(--bg-light-color);
}

.wp-block-table tbody tr:hover td {
    background-color: #f3f4f6;
}

/* Mobile specific styles */
@media (max-width: 768px) {

    .blog-page-content h2 {
        font-size: 1.5rem;
        line-height: 1.75rem;
    }

    .blog-page-content h3 {
        font-size: 1.25rem;
        line-height: 1.5rem;
    }

    .blog-page-content ul,
    .blog-page-content ol {
        padding-left: 1.5rem;
    }


    .blog-page-content ul ul,
    .blog-page-content ol ol,
    .blog-page-content ul ol,
    .blog-page-content ol ul {
        padding-left: 1rem;
    }

    .wp-block-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .wp-block-table::-webkit-scrollbar {
        height: 6px;
    }

    .wp-block-table::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 3px;
    }

    .wp-block-table::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 3px;
    }

    .wp-block-table::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }

    .wp-block-table table.has-fixed-layout {
        width: max-content;
        min-width: 600px;
    }

    .wp-block-table thead th,
    .wp-block-table thead td,
    .wp-block-table tbody th,
    .wp-block-table tbody td {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
        line-height: 1.25rem;
        min-width: 100px;
        white-space: nowrap;
    }


    .post-header {
        padding: 1rem 0;
        height: 400px;
    }

    .post-header .post-info {
        gap: 0.5rem;
    }

    .post-header .post-title {
        font-size: 1.75rem;
    }

    .post-header .post-meta {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .post-header .post-meta .category-btn {
        padding: .5rem .75rem;
        border-radius: 0.5rem;
        font-size: 0.8rem;
    }


    .blog-page-layout {
        display: flex;
        flex-direction: column-reverse;
        margin: 1rem auto;
        width: var(--sitewidth);
        gap: 2rem
    }

    .blog-page-sidebar {
        position: static;
    }

    .post-header .meta-item {
        font-size: 0.9rem;
    }

    .post-header .meta-item svg {
        --size: 18px;
    }

    .post-meta-additional {
        display: flex;
        gap: 1rem;
    }





}

/* Extra small screens */
@media (max-width: 480px) {
    .wp-block-table table.has-fixed-layout {
        min-width: 500px;
    }

    .wp-block-table thead th,
    .wp-block-table thead td,
    .wp-block-table tbody th,
    .wp-block-table tbody td {
        padding: 0.375rem 0.5rem;
        font-size: 0.8125rem;
        min-width: 80px;
    }
}

/* } blog section */

/* error 404 section { */

.error-404-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    color: #fff;
    margin: auto;
    min-height: 90dvh;
    text-align: center;
    position: relative;
    z-index: 100;
}

.error-404-content * {
    text-align: center;
}

.error-404-content h1 {
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
}

.error-404-content h2 {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1;
}

/* } error 404 section */


@media (max-width: 768px) {
    .no-border {
        padding: 1rem 0;
        border-bottom: 1px dashed #d1d5db;
    }

    .connection-details-section {
        display: flex;
        flex-direction: column;
        padding: 0rem;
        background: none;
        gap: 0.5rem;
    }

    .connection-item-popup-wrap {
        gap: 0.55rem;
    }

    .proxy-popup-link {
        width: 100%;
        margin-top: 0;
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    dl.connection-item {
        flex-direction: column;
        align-items: flex-start;
        gap: .75rem;
        padding: 1rem;
    }

    .connection-label {
        gap: 0.75rem;
    }

    .connection-label img {
        --size: 24px;
    }

    .insights-grid {
        display: flex;
        flex-direction: column;
    }

    .info-grid {
        display: flex;
        flex-direction: column;
    }


    dl.connection-item {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }


    .error-404-content h2 {
        font-size: 2rem;
        font-weight: 500;
        line-height: 1;
    }


    .error-404-content p {
        font-size: 0.75rem;
        font-weight: 400;
    }

    .info-section {
        padding: 1.5rem;
    }

    .section-header {
        gap: 0.5rem;
    }

    .section-title {
        font-size: 1.25rem;
        line-height: 1.5rem;
    }

    .info-row {
        padding: 0.75rem 0;
    }

}

/* Joli TOC Custom Styles - Matching Original Design */
.wpj-jtoc--toc {
    background: white !important;
    border-radius: 0.5rem !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: none !important;
    overflow: hidden !important;
}

.wpj-jtoc.--jtoc-toggle-icon .wpj-jtoc--toggle-wrap {
    width: auto !important;
}

/* Header styles */
.wpj-jtoc--header {
    padding: 0.75rem 1rem !important;
    border-bottom: 1px solid #e5e7eb !important;
    background: transparent !important;
}

.wpj-jtoc--header-main {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.wpj-jtoc--title {
    margin: 0 !important;
    padding: 0 !important;
}

.wpj-jtoc--title-label {
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin: 0 !important;
}

.wpj-jtoc--toggle-wrap,
.wpj-jtoc--toggle-box,
.wpj-jtoc--toggle {
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    color: #6b7280 !important;
}

/* Body and navigation styles */
.wpj-jtoc--body {
    background: transparent !important;
    padding: 0 !important;
}

.wpj-jtoc--nav {
    margin: 0 !important;
    padding: 0 !important;
}

.wpj-jtoc--items {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.wpj-jtoc--item {
    border-bottom: 1px solid #e5e7eb !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    position: relative !important;
}

.wpj-jtoc--item:last-child {
    border-bottom: none !important;
}

.wpj-jtoc--item-content {
    padding: 0 !important;
    margin: 0 !important;
}

.wpj-jtoc--item-content a {
    display: flex !important;
    align-items: flex-start !important;
    padding: 0.75rem 1rem !important;
    color: #374151 !important;
    font-size: 0.875rem !important;
    text-decoration: none !important;
    line-height: 1.25rem !important;
    cursor: pointer !important;
    transition: color 0.2s ease !important;
    width: 100% !important;
}

.wpj-jtoc--item .wpj-jtoc--item-content {
    border-radius: 0px;
}

.wpj-jtoc--item-content a::before {
    content: none !important;
}

.wpj-jtoc--item-content a:hover,
.wpj-jtoc--item .wpj-jtoc--item-content:hover,
.--jtoc-is-active>.wpj-jtoc--item-content {
    color: #d42122 !important;
    background-color: #fff2f2 !important;
}

.--jtoc-is-active>.wpj-jtoc--item-content>a {
    color: #d42122 !important;
}

.wpj-jtoc--item-content a:focus {
    outline: none !important;
    color: #d42122 !important;
}

/* Hide numeration since we use dots */
.wpj-jtoc--item-content a[data-numeration]::after {
    display: none !important;
}

/* Nested items (h3, h4, etc.) */
.wpj-jtoc--item.--jtoc-h3 .wpj-jtoc--item-content a {
    padding: 0.5rem 1rem 0.5rem 2rem !important;
    font-size: 0.8125rem !important;
    color: #6b7280 !important;
}

.wpj-jtoc--item.--jtoc-h3 .wpj-jtoc--item-content a::before {
    background-color: #9ca3af !important;
    width: 6px !important;
    height: 6px !important;
}

.wpj-jtoc--item.--jtoc-h3 .wpj-jtoc--item-content a:hover {
    color: #d42122 !important;
}

.wpj-jtoc--item.--jtoc-h4 .wpj-jtoc--item-content a {
    padding: 0.5rem 1rem 0.5rem 2.5rem !important;
    font-size: 0.75rem !important;
    color: #9ca3af !important;
}

.wpj-jtoc--item.--jtoc-h4 .wpj-jtoc--item-content a::before {
    background-color: #d1d5db !important;
    width: 5px !important;
    height: 5px !important;
}

.wpj-jtoc--item.--jtoc-h4 .wpj-jtoc--item-content a:hover {
    color: #d42122 !important;
}

/* Remove default Joli TOC styles that might interfere */
.wpj-jtoc--toc * {
    box-sizing: border-box !important;
}

.wpj-jtoc.--jtoc-theme-original .wpj-jtoc--header+.wpj-jtoc--body {
    margin-top: 0 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {

    .wpj-jtoc--header {
        padding: 0.5rem 0.75rem !important;
    }

    .wpj-jtoc--title-label {
        font-size: 1rem !important;
    }

    .wpj-jtoc--item-content a {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.8125rem !important;
    }

    .wpj-jtoc--item.--jtoc-h3 .wpj-jtoc--item-content a {
        padding: 0.4rem 0.75rem 0.4rem 1.5rem !important;
    }

    .wpj-jtoc--item.--jtoc-h4 .wpj-jtoc--item-content a {
        padding: 0.4rem 0.75rem 0.4rem 2rem !important;
    }
}

div:not(.wpj-jtoc--widget-floating)>.wpj-jtoc--toc {
    width: 100% !important;
}

.wpj-jtoc {
    margin: 0;
}



/* Share Widget Styles */
.share-widget {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.share-widget p {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: var(--text-main);
}

.share-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
    padding: 12px 12px;
    background: #fff;
    border: 1px solid #e1e5e8;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 500;
    transition: all .2s ease;
    cursor: pointer;
}

.share-btn:hover {
    background: #f8f9fa;
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-1px);
}

.share-btn.icon-only {
    padding: 6px 9px;
    aspect-ratio: 1 / 1;
}

.share-btn svg {
    --size: 16px;
    width: var(--size);
    height: var(--size);
    flex-shrink: 0;
}

.share-btn.icon-only svg {
    --size: 22px;
    width: var(--size);
    height: var(--size);
    flex-shrink: 0;
}

.share-btn.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: white;
}

.share-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.share-btn.twitter:hover {
    background: #000;
    border-color: #000;
    color: white;
}

.share-btn.copy-link:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

@media (max-width: 768px) {
    .share-btn {
        padding: 10px 14px;
        font-size: 13px;
    }
}


@media (max-width: 768px) {
    .margin {
        margin: 2rem auto;
    }

    html #wpadminbar {
        display: none !important;
    }
}


.social-menu-list {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.social-menu-list li {
    margin: 0;
    padding: 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.social-link svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: currentColor;
}

.social-logo {
    width: 1.2rem;
    height: 1.2rem;
    object-fit: contain;
}

.social-logo-svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: #fff;
}

.social-logo-svg * {
    fill: #fff;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 768px) {
    .social-menu-list {
        gap: 1rem;
    }

    .social-link {
        width: 2.2rem;
        height: 2.2rem;
    }
}

.site-menu-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.feedback-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #d42122;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
}

code {
    background: #0001;
    border-radius: 5px;
    padding: 2px 4px;
}


.partner-form-card form {
    margin-top: 5px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    width: 100% !important;
}

.partner-form-card div.fluentform,
.partner-form-card fieldset {
    display: contents !important;
}

.partner-form-card legend {
    display: none !important;
}

.ff-default .ff-el-form-control {
    font-family: "Manrope", ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji !important;
    /* 	border: none; */
    border-color: #fff1 !important;
    border-radius: 8px !important;
    transition: .2s !important;
    background: #fff !important;
}

.ff-default .ff-el-form-control:focus {
    border-color: var(--accent-color) !important;
}

.partner-form-card .error {
    position: absolute !important;
}

.fluentform .ff-el-group {
    margin: 0 !important;
    width: 100% !important;
    position: relative !important;
}

.fluentform .ff-el-is-error .text-danger {
    position: absolute;
    top: 0;
    right: 0;
    font-weight: 800;
}

form.fluent_form_6 .ff-btn-submit:not(.ff_btn_no_style) {
    width: 100% !important;
    background: #d91e2b !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: .2s !important;
}

form.fluent_form_6 .ff-btn-submit:not(.ff_btn_no_style):hover {
    background: var(--accent-color-hover) !important;
    transform: translateY(-2px) !important;
    color: #fff !important;
    opacity: 1 !important;
}

.ff-message-success {
    background: var(--accent-color-hover) !important;
    border-radius: 10rem !important;
    border: none !important;
    color: #fff !important;
    padding: 1rem 2rem !important;
    width: 100% !important;
    text-align: center !important;
}



/* Partner form card styles */
.partner-form-card {
    background: #fff5f5 !important;
}

.partner-form-content {
    gap: 0.75rem !important;
}

.partner-form-content h3 {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
    color: #000 !important;
    margin: 0 !important;
    font-weight: 700 !important;
}

.partner-form-content p {
    font-size: 0.9rem !important;
    color: #000 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    text-wrap: balance !important;
}

.partner-form-content .fluentform {
    margin-top: 0.5rem;
}

.partner-form-content .ff-btn-submit {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    color: #fff !important;
    background: var(--accent-color) !important;
    padding: 1rem !important;
    text-align: center !important;
    border-radius: 0.5rem !important;
    transition: .2s !important;
    width: 100% !important;
    border: none !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    height: 56px !important;
}

.partner-form-content .ff-btn-submit:hover {
    background: var(--accent-color-hover) !important;
}

.resource-card.partner-offer-card {
    padding: 4px;
    border-radius: 20px;
    background: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    color: inherit;
    text-decoration: none;
}

.partner-offer-card .resource-card-image {
    position: relative;
    min-height: 180px;
    padding: 0;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
}

.partner-offer-card__eyebrow {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 100px;
    background: #fcedee;
    color: #d91e2b;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.partner-offer-card .article-card-image {
    display: block;
    width: 100%;
    height: 180px;
    margin: 0;
    padding: 24px;
    box-sizing: border-box;
    object-fit: contain;
    object-position: center;
}

.partner-offer-card__content,
.partner-offer-card .resource-card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    height: 100%;
}

.partner-offer-card .resource-card-content h3 {
    margin: 0;
    color: #000;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}

.partner-offer-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}


.partner-offer-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
    flex: 0 1 auto;
}

.partner-offer-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255, 0, 0, 0.1);
    color: #d91e2b;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.partner-offer-card .resource-card-content p {
    margin: 0;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.625;
}

.partner-offer-card__cta,
.partner-offer-card .resource-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: auto;
    padding: 14px 32px;
    border-radius: 8px;
    background: #d91e2b;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.366;
    transition: background .2s ease, transform .2s ease;
    text-decoration: none;
}

.partner-offer-card__cta:hover,
.partner-offer-card .resource-card-link:hover {
    background: var(--accent-color-hover);
    transform: translateY(-2px);
}

.partner-offer-card__cta svg,
.partner-offer-card .resource-card-link svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 768px) {
    .partner-form form {
        display: flex !important;
        flex-direction: column !important;
    }


    .partner-form h2 {
        font-size: 1.75rem;
    }

    .partner-form h3 {
        font-size: 1rem;
        color: #fffa;
        font-weight: 400;
        margin: 0;
        text-align: center;
    }

    .partner-offer-card__content {
        padding: 20px;
    }

    .partner-offer-card .resource-card-image,
    .partner-offer-card .article-card-image {
        min-height: 150px;
        height: 150px;
    }

    .partner-offer-card .article-card-image {
        padding: 20px;
    }

    .partner-offer-card__eyebrow {
        top: 8px;
        right: 8px;
        padding: 6px 12px;
    }
}

/* Partners archive */
body.post-type-archive-article .min-h-screen {
    background: #f3f4f7;
}

body.page-header-overlay header.master-header {
    border-bottom: 0;
}

body.page-header-overlay .partners-hero {
    padding-top: calc(2rem + var(--header-height, 88px) + var(--wp-admin-bar-offset, 0px));
}

body.page-header-overlay .main-block {
    padding-top: calc(4rem + var(--header-height, 88px) + var(--wp-admin-bar-offset, 0px));
}

body.page-header-overlay .ip-lookup-hero .hero-layout {
    padding-top: calc(60px + var(--header-height, 88px) + var(--wp-admin-bar-offset, 0px));
}

body.page-header-overlay .speedtest-hero .hero-layout {
    padding-top: calc(3rem + var(--header-height, 88px) + var(--wp-admin-bar-offset, 0px));
}

body.page-header-overlay .cookie-converter-hero .hero-content,
body.page-header-overlay .dnsleak-hero .hero-initial,
body.page-header-overlay .dnsleak-hero .hero-progress,
body.page-header-overlay .dnsleak-hero .hero-result,
body.page-header-overlay .blacklist-hero .hero-initial,
body.page-header-overlay .blacklist-hero .hero-progress,
body.page-header-overlay .blacklist-hero .hero-result,
body.page-header-overlay .vpncheck-hero .hero-initial,
body.page-header-overlay .vpncheck-hero .hero-progress,
body.page-header-overlay .vpncheck-hero .hero-result {
    box-sizing: border-box;
    padding-top: calc(var(--header-height, 88px) + var(--wp-admin-bar-offset, 0px));
}

.partners-hero {
    position: relative;
    overflow: hidden;
    padding: 2rem 0 13.5rem;
    color: #fff;
    background:
        radial-gradient(circle at 84% 34%, rgba(233, 32, 51, 0.95), rgba(233, 32, 51, 0.42) 16%, rgba(16, 8, 26, 0) 38%),
        linear-gradient(90deg, #040415 0%, #060616 58%, #110515 100%);
}

.partners-hero::after {
    content: none;
}

.partners-hero__layout {
    display: grid;
    grid-template-columns: 50% auto;
    gap: 4rem;
    align-items: center;
}

.partners-hero__content {
    max-width: 34rem;
}

.partners-hero__page-label {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.875rem;
    line-height: 1.4;
}

.partners-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1;
}

.partners-hero__badge-icon {
    display: inline-flex;
    width: 1.125rem;
    height: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

.partners-hero__badge-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.partners-hero__title {
    display: flex;
    flex-direction: column;
    margin: 1.5rem 0 1rem;
    color: #fff;
    font-size: clamp(3.75rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.08em;
}

.partners-hero__title span {
    color: #ed2436;
}

.partners-hero__description {
    max-width: 29rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.125rem;
    line-height: 1.55;
}

.partners-hero__form.partner-form-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 450px;
    justify-self: end;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 1.5rem;
    background: linear-gradient(150deg, rgba(112, 101, 120, 0.6), rgba(82, 63, 84, 0.3)) !important;
    box-shadow: 0 22px 60px rgba(1, 3, 16, 0.28);
    backdrop-filter: blur(12px);
}

.partners-hero__form .partner-form-content {
    display: flex;
    flex-direction: column;
    gap: 1rem !important;
}

.partners-hero__form .partner-form-content h2 {
    margin: 0;
    color: #fff;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -1px;
}

.partners-hero__form .partner-form-content p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1rem !important;
    line-height: 1.45 !important;
}

.partners-hero__form form {
    margin-top: 0.25rem !important;
}

.partners-hero__form label,
.partners-hero__form .ff-el-input--label label {
    display: inline-block;
    margin-bottom: 0.625rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    font-weight: 500;
}

.partners-hero__form .ff-default .ff-el-form-control,
.partners-hero__form .ff-default select.ff-el-form-control,
.partners-hero__form .ff-default textarea.ff-el-form-control {
    min-height: 2.65rem;
    padding: 0.8rem 0.95rem !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 0.75rem !important;
    background: #0006 !important;
    color: #fff !important;
}

.partners-hero__form .ff-default .ff-el-form-control::placeholder {
    color: #b1aeb4;
}

.partners-hero__form .ff-default .ff-el-form-control:focus {
    border-color: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.14);
}

.partners-hero__form .ff_submit_btn_wrapper,
.partners-hero__form .ff-btn-wrap {
    width: 100%;
}

.partners-hero__form form.fluent_form_6 .ff-btn-submit:not(.ff_btn_no_style),
.partners-hero__form .partner-form-content .ff-btn-submit {
    position: relative;
    min-height: 2.85rem !important;
    border-radius: 0.875rem !important;
    background: var(--accent-color) !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em;
    box-shadow: none !important;
}

.partners-hero__form .ff-message-success {
    border-radius: 0.875rem !important;
    background: rgba(255, 255, 255, 0.14) !important;
    color: #fff !important;
}

.partners-recommended {
    position: relative;
    z-index: 3;
    margin-top: -7.5rem;
    margin-bottom: 3rem;
}

.partners-recommended__inner {
    position: relative;
}

.partners-recommended__header {
    margin-bottom: 1.5rem;
}

.partners-recommended__title {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
}

.special-deals-slider-block .partners-recommended__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.special-deals-slider-block .partners-recommended__title {
    color: #000;
    font-size: 2.5rem;
    letter-spacing: 0;
}

.special-deals-slider-block .partners-recommended__button {
    flex-shrink: 0;
    padding: 1rem 1.75rem;
    border-radius: 0.875rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.1;
    min-width: 11rem;
    text-align: center;
}

.partners-recommended-slider {
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

.partners-recommended-slider .splide__track {
    overflow: clip;
    padding: 0 2px 8px !important;
}

.partners-recommended-slider .splide__arrows {
    position: absolute;
    top: -2.75rem;
    right: 0;
    display: flex;
    gap: 0.75rem;
}

.special-deals-slider-block .partners-recommended-slider .splide__arrows {
    position: static;
}

.special-deals-slider-block .partners-recommended-slider .blog-pre-button {
    position: absolute;
    left: -70px;
    right: auto;
    top: 0;
    bottom: 0;
    margin: auto 0;
    z-index: 2;
}

.special-deals-slider-block .partners-recommended-slider .blog-next-button {
    position: absolute;
    right: -70px;
    left: auto;
    top: 0;
    bottom: 0;
    margin: auto 0;
    z-index: 2;
}

.partners-recommended-slider .blog-pre-button,
.partners-recommended-slider .blog-next-button {
    position: static;
    inset: auto;
    margin: 0;
}

.partners-recommended-slider .splide__slide {
    display: flex;
    height: auto;
}

.partners-recommended-slider .partner-offer-card {
    width: 100%;
    min-height: 100%;
    box-shadow: 0 5px 5px rgba(15, 23, 42, 0.03);
}

.special-deals-slider-block .partners-recommended-slider .partner-offer-card {
    box-shadow: none;
}

.partners-directory {
    position: relative;
    z-index: 2;
    margin-top: 0;
    margin-bottom: 5rem;
}

.partners-directory__surface {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.partners-directory__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: none;
    margin: 0 0 2rem;
    text-align: left;
}

h2.partners-directory__title {
    margin: 0;
    color: #09090f;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}

.partners-directory__tabs {
    width: auto;
    margin: 0;
}

.partners-directory__tab-list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
}

.partners-directory__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 10px 24px;
    border: 0 !important;
    border-radius: 11px;
    background: #fff !important;
    color: #5a5767 !important;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    box-shadow: none !important;
    text-decoration: none !important;
    white-space: nowrap;
    transition: .2s ease;
}

.partners-directory__tab:hover {
    background: var(--bg-light-color) !important;
    color: #3f3c4c !important;
}

.partners-directory__tab.active {
    background: #d91e2b !important;
    color: #fff !important;
}

.partners-directory .resources-grid {
    gap: 1.5rem;
}

.partners-directory .resource-card.partner-offer-card {
    min-height: 100%;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

@media (max-width: 1024px) {
    body.page-header-overlay .partners-hero {
        padding-top: calc(2rem + var(--header-height, 80px) + var(--wp-admin-bar-offset, 0px));
    }

    body.page-header-overlay .main-block {
        padding-top: calc(8rem + var(--header-height, 80px) + var(--wp-admin-bar-offset, 0px));
    }

    body.page-header-overlay .ip-lookup-hero .hero-layout {
        padding-top: calc(60px + var(--header-height, 80px) + var(--wp-admin-bar-offset, 0px));
    }

    body.page-header-overlay .speedtest-hero .hero-layout {
        padding-top: calc(3rem + var(--header-height, 80px) + var(--wp-admin-bar-offset, 0px));
    }

    body.page-header-overlay .cookie-converter-hero .hero-content,
    body.page-header-overlay .dnsleak-hero .hero-initial,
    body.page-header-overlay .dnsleak-hero .hero-progress,
    body.page-header-overlay .dnsleak-hero .hero-result,
    body.page-header-overlay .blacklist-hero .hero-initial,
    body.page-header-overlay .blacklist-hero .hero-progress,
    body.page-header-overlay .blacklist-hero .hero-result,
    body.page-header-overlay .vpncheck-hero .hero-initial,
    body.page-header-overlay .vpncheck-hero .hero-progress,
    body.page-header-overlay .vpncheck-hero .hero-result {
        padding-top: calc(var(--header-height, 80px) + var(--wp-admin-bar-offset, 0px));
    }

    .partners-hero {
        padding-bottom: 11.5rem;
    }

    .partners-hero__layout {
        gap: 2rem;
        grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
    }

    .partners-recommended {
        margin-top: -6.5rem;
    }

    .partners-directory {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    body.page-header-overlay .partners-hero {
        padding-top: calc(1.5rem + var(--header-height, 62px) + var(--wp-admin-bar-offset, 0px));
    }

    body.page-header-overlay .main-block {
        padding-top: calc(2rem + var(--header-height, 62px) + var(--wp-admin-bar-offset, 0px));
    }

    body.page-header-overlay .ip-lookup-hero .hero-layout {
        padding-top: calc(40px + var(--header-height, 62px) + var(--wp-admin-bar-offset, 0px));
    }

    body.page-header-overlay .speedtest-hero .hero-layout {
        padding-top: calc(3rem + var(--header-height, 62px) + var(--wp-admin-bar-offset, 0px));
    }

    body.page-header-overlay .cookie-converter-hero .hero-content,
    body.page-header-overlay .dnsleak-hero .hero-initial,
    body.page-header-overlay .dnsleak-hero .hero-progress,
    body.page-header-overlay .dnsleak-hero .hero-result,
    body.page-header-overlay .blacklist-hero .hero-initial,
    body.page-header-overlay .blacklist-hero .hero-progress,
    body.page-header-overlay .blacklist-hero .hero-result,
    body.page-header-overlay .vpncheck-hero .hero-initial,
    body.page-header-overlay .vpncheck-hero .hero-progress,
    body.page-header-overlay .vpncheck-hero .hero-result {
        padding-top: calc(var(--header-height, 62px) + var(--wp-admin-bar-offset, 0px));
    }

    .partners-hero {
        padding: 1.5rem 0 6rem;
    }

    .partners-hero__layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .partners-hero__content {
        max-width: none;
    }

    .partners-hero__title {
        margin-top: 1.25rem;
        font-size: clamp(3rem, 18vw, 4.5rem);
    }

    .partners-hero__description {
        font-size: 1rem;
    }

    .partners-hero__form.partner-form-card {
        max-width: none;
        padding: 1.25rem;
        border-radius: 1.5rem;
    }

    .partners-hero__form .partner-form-content h2 {
        font-size: 2rem;
    }

    .partners-hero__form .partner-form-content p {
        font-size: 1rem !important;
    }

    .partners-recommended {
        margin-top: -2.5rem;
        margin-bottom: 2.5rem;
    }

    .special-deals-slider-block .partners-recommended__header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1.25rem;
    }

    .partners-recommended__title {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
    }

    .special-deals-slider-block .partners-recommended__button {
        width: 100%;
        min-width: 0;
    }

    .partners-recommended-slider {
        padding-bottom: 2.5rem;
    }

    .partners-directory {
        margin-top: 0;
        margin-bottom: 3rem;
    }

    .partners-directory__surface {
        padding: 2rem 0 0;
        border-radius: 0;
    }

    .partners-directory__header {
        margin-bottom: 2rem;
    }

    .partners-directory__title {
        font-size: clamp(2rem, 9vw, 2.5rem);
    }

    .partners-directory__tabs {
        margin-bottom: 1.5rem;
    }

    .partners-directory__tab-list {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        width: auto;
        padding-bottom: 0.25rem;
    }

    .partners-directory__tab {
        flex: 0 0 auto;
    }

    .partners-directory .resources-grid {
        gap: 1rem;
    }
}

.partner-offer-card--highlighted {
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12), 0 0 0 2px rgba(217, 30, 43, 0.08);
}

body.partner-single-page .min-h-screen {
    background: #fff;
}

.partner-single-hero {
    position: relative;
    padding: calc(2rem + var(--header-height, 88px) + var(--wp-admin-bar-offset, 0px)) 0 0;
    background: #fff;
}

.partner-single-hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: min(460px, calc(100% - 80px));
    background:
        radial-gradient(circle at 84% 12%, rgba(233, 32, 51, 0.92), rgba(233, 32, 51, 0.38) 16%, rgba(16, 8, 26, 0) 36%),
        linear-gradient(180deg, #050512 0%, #050512 100%);
    pointer-events: none;
}

.partner-single-hero__shell {
    position: relative;
    z-index: 2;
}

.partner-single-card {
    padding: 48px 50px 56px;
    border-radius: 40px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.partner-single-card__meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 36px;
}

.partner-single-breadcrumbs {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #5a5767;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.partner-single-breadcrumbs svg {
    width: 12px;
    height: 12px;
}

.partner-single-breadcrumbs a {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    color: #1a1a1a;
    text-decoration: none;
}

.partner-single-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.partner-single-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 4px 12px;
    border-radius: 999px;
    color: #1a1a1a;
    font-size: 14px;
    line-height: 1.5;
}

.partner-single-tag--recommended {
    background: var(--accent-color, #d91e2b);
    color: #fff;
    box-shadow: none;
}

.partner-single-card__header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.partner-single-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: #fff;
    flex-shrink: 0;
}

.partner-single-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner-single-card__heading {
    flex: 1;
    min-width: 0;
}

.partner-single-title {
    margin: 0;
    color: #1a1a1a;
    font-size: clamp(2.75rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.partner-single-summary {
    max-width: 980px;
    margin: 20px 0 0;
    color: rgba(0, 0, 0, 0.8);
    font-size: clamp(1.125rem, 1.8vw, 1.5rem);
    line-height: 1.4;
}

.partner-single-pills {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}

.partner-single-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 60px;
    padding: 18px 24px 18px 18px;
    border: 1.5px solid #f5f5f5;
    border-radius: 12px;
    background: #f5f5f5;
    color: rgba(0, 0, 0, 0.7);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.625;
}

.partner-single-pill__icon,
.partner-single-highlights__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.partner-single-pill__icon svg,
.partner-single-highlights__icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.partner-single-offer {
    margin: 16px 0 34px;
    padding: 32px 48px;
    padding-right: 32px;
    border-radius: 24px;
    background: var(--accent-color, #d91e2b);
}

.partner-single-offer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.partner-single-offer__code-group {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: #fff;
}

.partner-single-offer__label {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
}

.partner-single-offer__code {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 50px;
    padding: 0 18px;
    border: 0;
    border-radius: 12px;
    background: rgba(248, 249, 250, 0.2);
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.1em;
    cursor: pointer;
}

.partner-single-offer__copy-icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
}

.partner-single-offer__copy-icon svg {
    width: 20px;
    height: 20px;
}

.partner-single-offer__copy-feedback {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    opacity: 0.9;
}

.partner-single-offer__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 14px 32px;
    border-radius: 12px;
    background: #fff;
    color: var(--accent-color, #d91e2b);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.366;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .2s ease, opacity .2s ease;
}

.partner-single-offer__button:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.partner-single-offer__button svg {
    width: 22px;
    height: 22px;
}

.partner-single-intro {
    margin-bottom: 12px;
}

.partner-single-intro p {
    margin: 0;
    color: #3a3a3a;
    font-size: 20px;
    line-height: 1.5;
}

.partner-single-intro__name {
    color: var(--accent-color, #d91e2b);
}

.partner-single-highlights {
    display: grid;
    gap: 12px;
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
}

.partner-single-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #3a3a3a;
    font-size: 20px;
    line-height: 1.5;
}

.partner-single-highlights__icon {
    margin-top: 3px;
}

.partner-single-highlights__icon svg {
    display: block;
}

.partner-single-content {
    color: #1a1a1a;
    font-size: 20px;
    line-height: 1.5;
}

.partner-single-content>*:first-child {
    margin-top: 0;
}

.partner-single-content>*:last-child,
.partner-single-content>*:last-child * {
    margin-bottom: 0;
}

.partner-single-content p {
    margin: 0 0 1em;
}

.partner-single-content ul,
.partner-single-content ul.wp-block-list {
    display: grid;
    gap: 12px;
    margin: 12px 0 34px;
    padding: 0;
    list-style: none;
}

.partner-single-content ul li,
.partner-single-content ul.wp-block-list li {
    position: relative;
    margin: 0;
    padding-left: 40px;
    color: #3a3a3a;
    font-size: 20px;
    line-height: 1.5;
}

.partner-single-content ul li::before,
.partner-single-content ul.wp-block-list li::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: url('/wp-content/themes/whoerip/assets/../assets/icons/Check_Light.svg') center/contain no-repeat;
}

.partner-single-content a {
    color: var(--accent-color, #d91e2b);
}

@media (max-width: 1024px) {
    .partner-single-card {
        padding: 40px 36px 44px;
    }

    .partner-single-card__meta,
    .partner-single-offer__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .partner-single-tags {
        justify-content: flex-start;
    }

    .partner-single-pills {
        grid-template-columns: 1fr;
    }

    .partner-single-offer {
        padding: 28px 32px;
    }
}

@media (max-width: 768px) {

    .partner-single-hero__shell {
        width: 100%;
        margin: 0;
    }

    .partner-single-hero {
        padding: calc(1.5rem + var(--header-height, 62px) + var(--wp-admin-bar-offset, 0px)) 0 2.5rem;
    }

    .partner-single-hero::before {
        height: 320px;
    }

    .partner-single-card {
        padding: 28px 20px 32px;
        border-radius: 28px;
    }

    .partner-single-card__meta {
        margin-bottom: 24px;
    }

    .partner-single-card__header {
        flex-direction: column;
        gap: 14px;
        margin-bottom: 24px;
    }

    .partner-single-logo {
        width: 52px;
        height: 52px;
        padding: 10px;
    }

    .partner-single-title {
        font-size: clamp(2rem, 10vw, 2.8rem);
        line-height: 1;
    }

    .partner-single-summary,
    .partner-single-intro p,
    .partner-single-highlights li,
    .partner-single-content,
    .partner-single-content ul li,
    .partner-single-content ul.wp-block-list li {
        font-size: 18px;
    }

    .partner-single-pill {
        min-height: 54px;
        padding: 16px;
        font-size: 15px;
    }

    .partner-single-offer {
        margin-bottom: 28px;
        padding: 22px 18px;
        border-radius: 20px;
    }

    .partner-single-offer__label {
        font-size: 18px;
    }

    .partner-single-offer__code {
        width: 100%;
        justify-content: center;
        font-size: 18px;
        letter-spacing: 0.08em;
    }

    .partner-single-offer__button {
        width: 100%;
    }
}

.back-to-blog {
    display: flex;
    flex-direction: row;
    gap: 8px;
    color: #cac8d2;
    background: transparent;
    font-size: 14px;
    margin-left: -12px;
    margin-bottom: -1.5rem;
    text-shadow: 0 0 10px #000;
    font-weight: 600;
    width: fit-content;
    padding: 8px 16px 8px 12px;
    border-radius: 100px;
    transition: .2s ease;
    border: 1px solid #fff0;
}

.back-to-blog svg {
    width: 22px;
    height: 22px;
}

.back-to-blog:hover {
    color: #fff;
    border: 1px solid #fff3;
    backdrop-filter: blur(10px);
    transform: translateY(-2px);
}