/* ============================================================
   IAB HOLIDAYS — Blogs (listing + single)
============================================================ */

body.page-template-blogs-php,
body.page-template-blogs-php .pageWarp,
body.single-blogs_post,
body.single-blogs_post .pageWarp {
    background: #f7f5fa;
}

body.page-template-blogs-php .iab-header,
body.single-blogs_post .iab-header {
    background: transparent !important;
    position: absolute !important;
    top: 24px !important;
    left: 0 !important;
    right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    box-shadow: none !important;
}

/* ── Blog listing ── */
.iab-blog-list {
    background: #f7f5fa;
    min-height: 60vh;
}

.iab-blog-list__hero {
    margin: 0 -24px 0;
    padding: 120px 24px 48px;
    background: linear-gradient(135deg, #2E0C54 0%, #49207A 100%);
    position: relative;
    overflow: hidden;
}

.iab-blog-list__hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(234, 81, 2, 0.12) 0%, transparent 55%);
    pointer-events: none;
}

.iab-blog-list__hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.iab-blog-list__hero-title {
    font-family: var(--iab-font, 'Helvetica Neue', Helvetica, Arial, sans-serif);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.1;
    text-transform: uppercase;
}

.iab-blog-list__hero-lead {
    font-family: var(--iab-font, 'Helvetica Neue', Helvetica, Arial, sans-serif);
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    max-width: 480px;
}

.iab-blog-list__body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

/* ── Topics filter ── */
.iab-blog-list__topics {
    margin-bottom: 28px;
}

.iab-blog-list__topics-label {
    display: block;
    margin-bottom: 14px;
    font-family: var(--iab-font, 'Helvetica Neue', Helvetica, Arial, sans-serif);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1E003A;
}

.iab-blog-list__topics-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.iab-blog-list__topics-pills a {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(30, 0, 58, 0.24);
    border-radius: 999px;
    background: #ffffff;
    font-family: var(--iab-font, 'Helvetica Neue', Helvetica, Arial, sans-serif);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1E003A;
    text-decoration: none;
    transition: background 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.iab-blog-list__topics-pills a:hover {
    border-color: #b713d7;
    color: #b713d7;
}

.iab-blog-list__topics-pills a.active {
    background: #1E003A;
    border-color: #1E003A;
    color: #ffffff;
    pointer-events: none;
}

/* ── Card grid ── */
.iab-blog-list__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.iab-blog-list__card {
    position: relative;
    display: block;
    min-height: 360px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 32px rgba(30, 0, 58, 0.1);
}

.iab-blog-list__cover {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 0.4s ease-in-out;
}

.iab-blog-list__card:hover .iab-blog-list__cover {
    transform: scale(1.06);
}

.iab-blog-list__shadow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 0, 58, 0.88) 0%, rgba(30, 0, 58, 0.1) 60%);
}

.iab-blog-list__meta {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 360px;
    padding: 28px;
    color: #ffffff;
}

.iab-blog-list__cat {
    display: inline-block;
    margin-bottom: 10px;
    font-family: var(--iab-font, 'Helvetica Neue', Helvetica, Arial, sans-serif);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.iab-blog-list__title {
    font-family: var(--iab-font, 'Helvetica Neue', Helvetica, Arial, sans-serif);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #ffffff;
}

.iab-blog-list__date {
    font-family: var(--iab-font, 'Helvetica Neue', Helvetica, Arial, sans-serif);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
}

/* ── Single blog ── */
.iab-blog-detail {
    background: #f7f5fa;
    padding-bottom: 80px;
}

.iab-blog__hero {
    position: relative;
    min-height: 52vh;
    margin: 0;
    padding: 0 24px 72px;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.iab-blog__hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

.iab-blog__hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(46, 12, 84, 1) 20%,
        rgba(73, 32, 122, 0.5) 100%
    );
    pointer-events: none;
}

.iab-blog__hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.iab-blog__hero-cat {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    font-family: var(--iab-font, 'Helvetica Neue', Helvetica, Arial, sans-serif);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
}

.iab-blog__hero-title {
    font-family: var(--iab-font, 'Helvetica Neue', Helvetica, Arial, sans-serif);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.08;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
    max-width: min(900px, calc(100% - 140px));
    padding-inline-end: 12px;
}

.iab-blog__hero-share {
    position: absolute;
    inset-inline-end: max(24px, calc((100% - 1200px) / 2 + 24px));
    bottom: 72px;
    z-index: 3;
}

html[dir="rtl"] .iab-blog__hero-share,
body.rtl .iab-blog__hero-share {
    inset-inline-end: auto;
    inset-inline-start: max(24px, calc((100% - 1200px) / 2 + 24px));
}

.iab-blog__share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--iab-font, 'Helvetica Neue', Helvetica, Arial, sans-serif);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff !important;
    text-decoration: none;
}

.iab-blog__share-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(45deg, #EA5103 0%, #FD8D54 100%);
}

.iab-blog__share-ico img {
    width: 12px;
    height: auto;
}

.iab-blog__content {
    padding: 48px 24px 0;
    background: #f7f5fa;
}

.iab-blog__content-inner {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    box-sizing: border-box;
}

.iab-blog__date {
    font-family: var(--iab-font, 'Helvetica Neue', Helvetica, Arial, sans-serif);
    font-size: 13px;
    font-weight: 500;
    color: #6D5B7D;
    margin: 0 0 20px;
}

.iab-blog__body {
    font-family: var(--iab-font, 'Helvetica Neue', Helvetica, Arial, sans-serif);
    font-size: 15px;
    line-height: 1.78;
    color: #452D5B;
}

.iab-blog__body p {
    margin: 0 0 16px;
}

.iab-blog__figure {
    margin: 32px 0 0;
}

.iab-blog__figure img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.iab-blog__body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 24px auto;
    border-radius: 8px;
}

.iab-blog__body .gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 28px 0;
}

.iab-blog__body .gallery .gallery-item {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    text-align: left;
}

.iab-blog__body .gallery br {
    display: none;
}

.iab-blog__body .gallery img {
    width: 100%;
    height: auto;
    margin: 0;
    border: none !important;
    border-radius: 8px;
}

.iab-blog__body .gallery a {
    display: block;
}

.iab-blog__subheading {
    font-family: var(--iab-font, 'Helvetica Neue', Helvetica, Arial, sans-serif);
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 600;
    color: #452D5B;
    margin: 32px 0 12px;
}

/* ── Related blogs ── */
.iab-blog__related {
    padding: 56px 24px 0;
}

.iab-blog__related-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.iab-blog__related-title {
    font-family: var(--iab-font, 'Helvetica Neue', Helvetica, Arial, sans-serif);
    font-size: clamp(26px, 3.5vw, 34px);
    font-weight: 600;
    color: #452D5B;
    margin: 0 0 24px;
}

.iab-blog__related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.iab-blog__related-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.iab-blog__related-box {
    position: relative;
    min-height: 280px;
    border-radius: 12px;
    overflow: hidden;
}

.iab-blog__related-cover {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.iab-blog__related-shadow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 0, 58, 0.82) 0%, rgba(30, 0, 58, 0.15) 65%);
    z-index: 1;
}

.iab-blog__related-warp {
    position: relative;
    z-index: 2;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #ffffff;
}

.iab-blog__related-name p {
    font-family: var(--iab-font, 'Helvetica Neue', Helvetica, Arial, sans-serif);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.iab-blog__related-name h3 {
    font-family: var(--iab-font, 'Helvetica Neue', Helvetica, Arial, sans-serif);
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.iab-blog__related-date p {
    font-family: var(--iab-font, 'Helvetica Neue', Helvetica, Arial, sans-serif);
    font-size: 12px;
    margin: 12px 0 0;
    opacity: 0.8;
}

@media (max-width: 991px) {
    .iab-blog-list__hero {
        margin: 0 -20px 0;
        padding: 100px 20px 40px;
    }

    .iab-blog-list__grid {
        grid-template-columns: 1fr;
    }

    .iab-blog__hero {
        min-height: 46vh;
        padding: 0 20px 64px;
    }

    .iab-blog__hero-inner {
        padding-top: 108px;
    }

    .iab-blog__hero-share {
        inset-inline-end: 20px;
        bottom: 64px;
    }

    html[dir="rtl"] .iab-blog__hero-share,
    body.rtl .iab-blog__hero-share {
        inset-inline-end: auto;
        inset-inline-start: 20px;
    }

    .iab-blog__related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body.page-template-blogs-php .iab-header,
    body.single-blogs_post .iab-header {
        top: 12px !important;
    }

    .iab-blog-list__hero {
        margin: 0 -16px 0;
        padding: 88px 16px 36px;
    }

    .iab-blog-list__hero-title {
        font-size: 32px;
    }

    .iab-blog-list__card {
        min-height: 320px;
    }

    .iab-blog-list__meta {
        min-height: 320px;
        padding: 22px;
    }

    .iab-blog__hero {
        min-height: 420px;
        padding: 0 20px 56px;
    }

    .iab-blog__hero-inner {
        padding-top: 96px;
    }

    .iab-blog__hero-share {
        position: static;
        margin-top: 16px;
        align-self: flex-start;
    }

    .iab-blog__content {
        padding-top: 36px;
    }

    .iab-blog__body .gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}
