/* =========================================================
   Event Show Page
   Public Front v2
========================================================= */

.event-show-page {
    overflow: hidden;
    background: #fff;
}

/* =========================================================
   Hero
========================================================= */

.event-show-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 88px;
    background:
        radial-gradient(circle at 12% 20%, color-mix(in srgb, var(--public-primary) 36%, transparent), transparent 28%),
        radial-gradient(circle at 88% 18%, color-mix(in srgb, var(--public-accent) 24%, transparent), transparent 25%),
        linear-gradient(135deg, #0f172a 0%, #111827 52%, color-mix(in srgb, var(--public-primary) 46%, #111827) 100%);
    color: #fff;
}

.event-show-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .22;
    filter: saturate(1.05);
    transform: scale(1.04);
}

.event-show-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, .92), rgba(15, 23, 42, .72)),
        linear-gradient(180deg, rgba(15, 23, 42, .24), rgba(15, 23, 42, .94));
}

.event-show-hero-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .34;
    background-image:
        linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(180deg, black 0%, transparent 92%);
}

.event-show-hero-content {
    position: relative;
    z-index: 2;
}

.event-show-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 22px;
}

.event-show-badge {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .88);
    font-size: 12px;
    font-weight: 950;
    backdrop-filter: blur(14px);
}

.event-show-badge-primary {
    border-color: var(--public-accent);
    background: var(--public-accent);
    color: #111827;
}

.event-show-hero-title {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 950;
    line-height: 1.06;
    letter-spacing: -1.2px;
}

.event-show-hero-desc {
    max-width: 720px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
    line-height: 2;
}

.event-show-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.event-show-meta-list span {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    font-weight: 900;
}

.event-show-meta-list i {
    color: var(--public-accent);
}

.event-show-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.event-show-primary-action,
.event-show-secondary-action,
.event-show-heart-action,
.event-show-secondary-light-action {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 950;
    text-decoration: none;
    transition: .22s ease;
}

.event-show-primary-action {
    border: 1px solid var(--public-accent);
    background: var(--public-accent);
    color: #111827;
}

.event-show-primary-action:hover {
    border-color: color-mix(in srgb, var(--public-accent) 85%, black);
    background: color-mix(in srgb, var(--public-accent) 85%, black);
    color: #111827;
    transform: translateY(-2px);
}

.event-show-secondary-action,
.event-show-heart-action,
.event-show-secondary-light-action {
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .10);
    color: #fff;
    backdrop-filter: blur(14px);
}

.event-show-secondary-action:hover,
.event-show-heart-action:hover,
.event-show-secondary-light-action:hover {
    border-color: rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .17);
    color: #fff;
    transform: translateY(-2px);
}

.event-show-side-card {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 36px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px);
}

.event-show-side-media {
    height: 290px;
    overflow: hidden;
    margin: 14px 14px 0;
    border-radius: 28px;
    background: rgba(255, 255, 255, .10);
}

.event-show-side-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-show-side-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--public-accent);
    font-size: 60px;
}

.event-show-side-content {
    padding: 18px;
}

.event-show-side-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.event-show-side-row:last-child {
    border-bottom: 0;
}

.event-show-side-row span {
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    font-weight: 900;
}

.event-show-side-row strong {
    color: #fff;
    font-size: 13px;
    font-weight: 950;
    text-align: end;
}

/* =========================================================
   Shared Sections
========================================================= */

.event-show-section {
    padding: 92px 0;
    background: #fff;
}

.event-show-about-section,
.event-show-speakers-section,
.event-show-map-section {
    background:
        radial-gradient(circle at 10% 10%, var(--public-primary-soft), transparent 26%),
        linear-gradient(180deg, #f8fafc, #fff);
    border-top: 1px solid var(--public-border);
    border-bottom: 1px solid var(--public-border);
}

.event-show-section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.event-show-section-head.text-center {
    margin-inline: auto;
    margin-bottom: 44px;
}

.event-show-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 8px 15px;
    border: 1px solid var(--public-border);
    border-radius: 999px;
    background: #fff;
    color: var(--public-primary);
    font-size: 13px;
    font-weight: 950;
}

.event-show-section-head h2 {
    margin: 18px 0 0;
    color: var(--public-heading);
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 950;
    line-height: 1.14;
    letter-spacing: -.8px;
}

.event-show-section-head p {
    margin: 16px 0 0;
    color: var(--public-muted);
    font-size: 16px;
    line-height: 1.9;
}

.event-show-muted {
    color: var(--public-muted);
}

/* =========================================================
   About
========================================================= */

.event-show-about-card,
.event-show-info-card {
    height: 100%;
    border: 1px solid var(--public-border);
    border-radius: 34px;
    background: #fff;
}

.event-show-about-card {
    padding: 30px;
}

.event-show-rich-text {
    color: var(--public-text);
    font-size: 16px;
    line-height: 2.1;
}

.event-show-info-card {
    padding: 24px;
}

.event-show-info-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--public-border);
}

.event-show-info-header i {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 20px;
    background: var(--public-primary);
    color: #fff;
    font-size: 24px;
}

.event-show-info-header strong {
    display: block;
    color: var(--public-heading);
    font-size: 18px;
    font-weight: 950;
}

.event-show-info-header span {
    display: block;
    margin-top: 6px;
    color: var(--public-muted);
    font-size: 13px;
    line-height: 1.8;
    font-weight: 750;
}

.event-show-info-list {
    display: grid;
    gap: 14px;
    padding-top: 20px;
}

.event-show-info-item {
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--public-border);
    border-radius: 22px;
    background: #fff;
}

.event-show-info-item span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--public-muted);
    font-size: 12px;
    font-weight: 950;
}

.event-show-info-item span i {
    color: var(--public-primary);
}

.event-show-info-item strong {
    color: var(--public-heading);
    font-size: 14px;
    font-weight: 950;
}

/* =========================================================
   Sessions Timeline
========================================================= */

.event-show-timeline {
    position: relative;
    display: grid;
    gap: 18px;
}

.event-show-timeline::before {
    content: "";
    position: absolute;
    top: 28px;
    bottom: 28px;
    inset-inline-start: 116px;
    width: 2px;
    background: linear-gradient(180deg, var(--public-primary), var(--public-accent));
}

.event-show-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 24px;
    align-items: start;
    padding: 24px;
    border: 1px solid var(--public-border);
    border-radius: 34px;
    background: #fff;
    transition: .22s ease;
}

.event-show-timeline-item:hover {
    transform: translateY(-3px);
    border-color: var(--public-primary);
}

.event-show-timeline-time {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 9px;
    padding: 18px;
    border-radius: 24px;
    background: var(--public-primary);
    color: #fff;
}

.event-show-timeline-time span {
    color: rgba(255, 255, 255, .76);
    font-size: 12px;
    font-weight: 900;
}

.event-show-timeline-time strong {
    color: #fff;
    font-size: 20px;
    font-weight: 950;
}

.event-show-timeline-content h3 {
    margin: 0;
    color: var(--public-heading);
    font-size: 24px;
    font-weight: 950;
    line-height: 1.35;
}

.event-show-session-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.event-show-session-number {
    flex-shrink: 0;
    color: color-mix(in srgb, var(--public-primary) 18%, transparent);
    font-size: 48px;
    font-weight: 950;
    line-height: 1;
}

.event-show-session-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.event-show-session-meta span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border: 1px solid var(--public-border);
    border-radius: 999px;
    background: #f8fafc;
    color: var(--public-muted);
    font-size: 12px;
    font-weight: 900;
}

.event-show-session-meta i {
    color: var(--public-primary);
}

.event-show-timeline-content p {
    margin: 16px 0 0;
    color: var(--public-muted);
    font-size: 14px;
    line-height: 1.9;
}

.event-show-session-speakers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.event-show-session-speaker {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 8px 12px;
    border: 1px solid var(--public-border);
    border-radius: 999px;
    background: #fff;
}

.event-show-session-speaker img,
.event-show-session-speaker > span {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 999px;
}

.event-show-session-speaker img {
    object-fit: cover;
}

.event-show-session-speaker > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--public-primary-soft);
    color: var(--public-primary);
}

.event-show-session-speaker strong {
    display: block;
    color: var(--public-heading);
    font-size: 13px;
    font-weight: 950;
}

.event-show-session-speaker small {
    display: block;
    color: var(--public-muted);
    font-size: 11px;
    font-weight: 800;
}

/* =========================================================
   Speakers
========================================================= */

.event-show-speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.event-show-speaker-card {
    overflow: hidden;
    border: 1px solid var(--public-border);
    border-radius: 34px;
    background: #fff;
    transition: .22s ease;
}

.event-show-speaker-card:hover {
    transform: translateY(-4px);
    border-color: var(--public-primary);
}

.event-show-speaker-media {
    position: relative;
    height: 290px;
    overflow: hidden;
    margin: 12px 12px 0;
    border-radius: 28px;
    background: #f3f4f6;
}

.event-show-speaker-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-show-speaker-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--public-primary-soft);
    color: var(--public-primary);
    font-size: 58px;
}

.event-show-featured-badge {
    position: absolute;
    top: 14px;
    inset-inline-start: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--public-accent);
    color: #111827;
    font-size: 12px;
    font-weight: 950;
}

.event-show-speaker-content {
    padding: 24px;
}

.event-show-speaker-content h3 {
    margin: 0;
    color: var(--public-heading);
    font-size: 22px;
    font-weight: 950;
}

.event-show-speaker-job {
    display: block;
    margin-top: 8px;
    color: var(--public-primary);
    font-size: 13px;
    font-weight: 950;
}

.event-show-speaker-company {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    color: var(--public-muted);
    font-size: 12px;
    font-weight: 900;
}

.event-show-speaker-content p {
    margin: 14px 0 0;
    color: var(--public-muted);
    font-size: 13px;
    line-height: 1.8;
}

/* =========================================================
   Exhibitors
========================================================= */

.event-show-exhibitors-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.event-show-exhibitor-card {
    display: flex;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--public-border);
    border-radius: 32px;
    background: #fff;
    transition: .22s ease;
}

.event-show-exhibitor-card:hover {
    transform: translateY(-3px);
    border-color: var(--public-primary);
}

.event-show-exhibitor-logo {
    width: 96px;
    height: 96px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid var(--public-border);
    border-radius: 26px;
    background: #f8fafc;
    color: var(--public-primary);
    font-size: 38px;
}

.event-show-exhibitor-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.event-show-exhibitor-content h3 {
    margin: 0;
    color: var(--public-heading);
    font-size: 22px;
    font-weight: 950;
}

.event-show-exhibitor-company {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    color: var(--public-primary);
    font-size: 13px;
    font-weight: 950;
}

.event-show-exhibitor-content p {
    margin: 12px 0 0;
    color: var(--public-muted);
    font-size: 13px;
    line-height: 1.8;
}

.event-show-exhibitor-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.event-show-exhibitor-meta span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border: 1px solid var(--public-border);
    border-radius: 999px;
    background: #f8fafc;
    color: var(--public-muted);
    font-size: 12px;
    font-weight: 900;
}

/* =========================================================
   Venue Map
========================================================= */

.event-show-map-card {
    overflow: hidden;
    border: 1px solid var(--public-border);
    border-radius: 36px;
    background: #fff;
}

.event-show-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px;
    border-bottom: 1px solid var(--public-border);
}

.event-show-map-header span {
    display: block;
    color: var(--public-primary);
    font-size: 12px;
    font-weight: 950;
}

.event-show-map-header strong {
    display: block;
    margin-top: 5px;
    color: var(--public-heading);
    font-size: 22px;
    font-weight: 950;
}

.event-show-map-header small {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--public-primary-soft);
    color: var(--public-primary);
    font-size: 13px;
    font-weight: 950;
}

.event-show-map-body {
    padding: 24px;
}

.event-show-map-image-wrap {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--public-border);
    border-radius: 30px;
    background: #f8fafc;
}

.event-show-map-image {
    width: 100%;
    display: block;
}

.event-show-map-point {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: 999px;
    background: var(--public-primary);
    color: #fff;
    font-size: 16px;
    animation: mapPulse 1.8s ease-in-out infinite;
}

html[dir="rtl"] .event-show-map-point {
    transform: translate(50%, -50%);
}

.event-show-map-placeholder {
    min-height: 320px;
    display: grid;
    place-items: center;
    gap: 12px;
    border: 1px dashed var(--public-border);
    border-radius: 30px;
    background: #f8fafc;
    color: var(--public-muted);
    text-align: center;
}

.event-show-map-placeholder i {
    color: var(--public-primary);
    font-size: 54px;
}

.event-show-map-placeholder strong {
    color: var(--public-heading);
    font-size: 18px;
    font-weight: 950;
}

.event-show-map-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.event-show-map-point-card {
    display: flex;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--public-border);
    border-radius: 24px;
    background: #fff;
}

.event-show-map-point-card > span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 16px;
    background: var(--public-primary-soft);
    color: var(--public-primary);
}

.event-show-map-point-card strong {
    display: block;
    color: var(--public-heading);
    font-size: 15px;
    font-weight: 950;
}

.event-show-map-point-card small {
    display: block;
    margin-top: 4px;
    color: var(--public-primary);
    font-size: 12px;
    font-weight: 900;
}

.event-show-map-point-card p {
    margin: 8px 0 0;
    color: var(--public-muted);
    font-size: 13px;
    line-height: 1.7;
}

.event-show-map-point-card em {
    display: inline-flex;
    margin-top: 9px;
    color: var(--public-muted);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
}

/* =========================================================
   Final CTA
========================================================= */

.event-show-final-cta {
    padding: 92px 0;
    background: #fff;
}

.event-show-final-box {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 48px;
    border-radius: 40px;
    background:
        radial-gradient(circle at 12% 20%, color-mix(in srgb, var(--public-accent) 28%, transparent), transparent 26%),
        radial-gradient(circle at 88% 18%, color-mix(in srgb, var(--public-primary) 40%, transparent), transparent 30%),
        linear-gradient(135deg, #0f172a, #111827);
    color: #fff;
}

.event-show-final-box::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, black, transparent 85%);
}

.event-show-final-content,
.event-show-final-actions {
    position: relative;
    z-index: 2;
}

.event-show-final-content {
    max-width: 720px;
}

.event-show-final-content h2 {
    margin: 18px 0 0;
    color: #fff;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 950;
    line-height: 1.16;
}

.event-show-final-content p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .74);
    font-size: 16px;
    line-height: 1.9;
}

.event-show-final-content small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-weight: 900;
}

.event-show-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}

/* =========================================================
   Animations
========================================================= */

@keyframes mapPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.12);
    }
}

html[dir="rtl"] @keyframes mapPulse {
                    0%, 100% {
                        transform: translate(50%, -50%) scale(1);
                    }

                    50% {
                        transform: translate(50%, -50%) scale(1.12);
                    }
                }

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 991.98px) {
    .event-show-hero {
        padding: 76px 0 88px;
    }

    .event-show-hero-content {
        text-align: center;
    }

    .event-show-badges,
    .event-show-meta-list,
    .event-show-hero-actions {
        justify-content: center;
    }

    .event-show-timeline::before {
        display: none;
    }

    .event-show-timeline-item {
        grid-template-columns: 1fr;
    }

    .event-show-speakers-grid,
    .event-show-exhibitors-grid,
    .event-show-map-points {
        grid-template-columns: 1fr;
    }

    .event-show-final-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-show-final-actions {
        width: 100%;
    }

    .event-show-final-actions .event-show-primary-action,
    .event-show-final-actions .event-show-secondary-light-action {
        flex: 1;
    }
}

@media (max-width: 767.98px) {
    .event-show-hero-title {
        font-size: 40px;
    }

    .event-show-hero-desc {
        font-size: 15px;
    }

    .event-show-section,
    .event-show-final-cta {
        padding: 64px 0;
    }

    .event-show-about-card,
    .event-show-info-card,
    .event-show-timeline-item,
    .event-show-map-card {
        border-radius: 28px;
    }

    .event-show-exhibitor-card {
        flex-direction: column;
    }

    .event-show-exhibitor-logo {
        width: 100%;
        height: 130px;
    }

    .event-show-final-box {
        padding: 32px 22px;
        border-radius: 30px;
    }
}

@media (max-width: 575.98px) {
    .event-show-hero-actions,
    .event-show-final-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .event-show-primary-action,
    .event-show-secondary-action,
    .event-show-heart-action,
    .event-show-secondary-light-action {
        width: 100%;
    }

    .event-show-side-media {
        height: 220px;
    }

    .event-show-session-head {
        display: grid;
    }

    .event-show-session-number {
        font-size: 38px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .event-show-map-point {
        animation: none !important;
    }
}
