/* Insights: list and detail consolidated styles */

/* Insights list page */
.insights-wrapper {
    padding-top: 2rem;
}

.insights-hero {
    display: grid;
    gap: 2.8rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.14), rgba(99, 102, 241, 0.18));
    border-radius: 32px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(79, 70, 229, 0.18);
}

.insights-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.18), transparent 55%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.2), transparent 50%);
    opacity: 0.8;
    pointer-events: none;
}

.insights-hero__info,
.insights-hero__card {
    position: relative;
    z-index: 1;
}

.insights-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.65);
    margin-bottom: 0.8rem;
}

.insights-hero__title {
    font-size: clamp(2.2rem, 3.4vw, 3rem);
    margin: 0 0 1.2rem;
    color: #0f172a;
}

.insights-hero__subtitle {
    font-size: 1.08rem;
    color: rgba(15, 23, 42, 0.75);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.insights-hero__tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.insights-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(59, 130, 246, 0.25);
    font-weight: 600;
    font-size: 0.85rem;
    color: #1d4ed8;
}

.insights-hero__card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 26px;
    padding: 2.4rem;
    box-shadow: 0 32px 64px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(148, 163, 184, 0.16);
    backdrop-filter: blur(8px);
}

.insights-hero__meta {
    display: grid;
    gap: 1rem;
}

.insights-meta-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.98rem;
    color: #1e293b;
}

.insights-meta-label {
    min-width: 3.5rem;
    font-weight: 600;
    color: #2563eb;
}

.insights-cta {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.85rem 1.8rem;
    border-radius: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(120deg, #2563eb, #7c3aed);
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.insights-cta:hover,
.insights-cta:focus {
    transform: translateY(-1px);
    box-shadow: 0 22px 40px rgba(124, 58, 237, 0.25);
}

.insights-section {
    padding: 4.5rem 0;
}

.insights-section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

.insights-section__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: rgba(59, 130, 246, 0.8);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.insights-section__title {
    font-size: clamp(1.9rem, 2.4vw, 2.4rem);
    margin: 0;
    color: #0f172a;
}

.insights-section__subtitle {
    margin: 1rem 0 0;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.insights-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    background: #fff;
    border-radius: 24px;
    padding: 2.2rem;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.insights-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 52px rgba(37, 99, 235, 0.16);
}

.insights-card__badge {
    position: absolute;
    top: 1.6rem;
    right: 1.6rem;
    padding: 0.2rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(120deg, #f97316, #ec4899);
    box-shadow: 0 8px 16px rgba(249, 115, 22, 0.25);
}

.insights-card__status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #2563eb;
    font-weight: 600;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
}

.insights-card__title {
    margin: 0;
    font-size: 1.4rem;
    color: #0f172a;
    line-height: 1.4;
}

.insights-card__meta {
    display: grid;
    gap: 0.4rem;
    font-size: 0.95rem;
    color: #475569;
}

.insights-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.insights-card__tag {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    color: #1d4ed8;
    background: rgba(59, 130, 246, 0.14);
    font-weight: 600;
}

.insights-card__summary {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
}

.insights-card__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}

.insights-card__cta::after {
    content: '→';
    display: inline-block;
    transition: transform 0.2s ease;
}

.insights-card__cta:hover::after,
.insights-card__cta:focus::after {
    transform: translateX(4px);
}

.insights-card--past {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: none;
}

.insights-subscribe {
    margin-top: 4rem;
    padding: 2.8rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(139, 92, 246, 0.12));
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.insights-subscribe__title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #0f172a;
}

.insights-subscribe__desc {
    margin: 0 auto 1.6rem;
    max-width: 520px;
    color: #64748b;
    font-size: 1rem;
}

.insights-subscribe__actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.insights-subscribe__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.insights-subscribe__btn--primary {
    background: linear-gradient(120deg, #2563eb, #7c3aed);
    color: #fff;
    box-shadow: 0 16px 28px rgba(37, 99, 235, 0.2);
}

.insights-subscribe__btn--primary:hover,
.insights-subscribe__btn--primary:focus {
    transform: translateY(-1px);
    box-shadow: 0 20px 36px rgba(124, 58, 237, 0.24);
}

.insights-subscribe__btn--ghost {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.22);
    color: #1f2937;
}

.insights-subscribe__btn--ghost:hover,
.insights-subscribe__btn--ghost:focus {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(148, 163, 184, 0.18);
}

@media (max-width: 768px) {
    .insights-hero {
        padding: 2.6rem;
        border-radius: 24px;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .insights-hero__title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    .insights-hero__subtitle {
        font-size: 1rem;
    }
    .insights-hero__tags {
        gap: 0.5rem;
    }
    .insights-hero__card {
        padding: 2rem;
    }
    .insights-section {
        padding: 3.3rem 0;
    }
    .insights-grid {
        gap: 1.5rem;
    }
    .insights-card {
        padding: 1.8rem;
    }
    .insights-subscribe {
        padding: 2.2rem 1.8rem;
    }
}

@media (max-width: 620px) {
    .insights-wrapper {
        padding-top: 1.2rem;
    }
    .insights-hero__tags {
        flex-wrap: wrap;
    }
    .insights-hero__meta {
        gap: 0.8rem;
    }
    .insights-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    .insights-meta-label {
        font-size: 0.9rem;
    }
    .insights-card__title {
        font-size: 1.25rem;
    }
    .insights-card__summary {
        font-size: 0.92rem;
    }
    .insights-card__cta {
        justify-content: flex-start;
    }
    .insights-subscribe__actions {
        flex-direction: column;
    }
    .insights-subscribe__btn {
        width: 100%;
    }
}

/* Event detail page */
.event-detail {
    position: relative;
    padding: 4rem 0 4.5rem;
    background: radial-gradient(circle at 12% 12%, rgba(59,130,246,0.12), transparent 60%),
                radial-gradient(circle at 85% 8%, rgba(124,58,237,0.12), transparent 60%),
                linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    overflow: hidden;
}
.event-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.event-bg span {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.2), transparent 70%);
    opacity: 0.75;
    animation: float 18s ease-in-out infinite;
}
.event-bg span:nth-child(1) { width: 260px; height: 260px; top: 6%; left: 10%; }
.event-bg span:nth-child(2) { width: 200px; height: 200px; top: 20%; right: 18%; animation-delay: -6s; }
.event-bg span:nth-child(3) { width: 300px; height: 300px; bottom: 12%; left: 16%; animation-delay: -3s; }
.event-bg span:nth-child(4) { width: 220px; height: 220px; bottom: 22%; right: 10%; animation-delay: -8s; }

.event-wrap {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.8rem;
    display: grid;
    gap: 1.6rem;
}
.event-card {
    position: relative;
    border-radius: 32px;
    padding: 2.2rem 2.4rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(237,242,255,0.96) 100%);
    border: 1px solid rgba(226,232,240,0.65);
    box-shadow: 0 26px 52px rgba(15,23,42,0.12);
    backdrop-filter: blur(10px);
    text-align: center;
}
.event-card::before {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,0.35), rgba(240,244,255,0.12));
    pointer-events: none;
}
.event-card > * { position: relative; z-index: 1; }

.event-card--full { grid-column: 1; }
.event-card--accent {
    background: linear-gradient(135deg, rgba(248,230,255,0.92), rgba(224,213,255,0.92));
    color: #3f2670;
}
.event-card--accent::before { background: linear-gradient(135deg, rgba(255,255,255,0.45), rgba(255,255,255,0)); }
.event-card--quote {
    background: linear-gradient(120deg, rgba(4,7,34,0.92), rgba(28,36,70,0.92));
    color: rgba(246,249,255,0.95);
    border-color: rgba(12,18,43,0.5);
    box-shadow: 0 24px 44px rgba(4,7,34,0.35);
}
.event-card--quote::before { display: none; }

.event-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1f2245;
    margin: 0;
    line-height: 1.3;
}
.event-divider {
    width: 70px;
    height: 4px;
    border-radius: 999px;
    margin: 1.2rem auto 0;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
}
.event-text { margin: 0; font-size: 1.05rem; color: #1f2245; line-height: 1.85; }
.event-text--light { color: #56607c; margin-top: 0.6rem; }
.event-section-title {
    margin-bottom: 1.4rem;
    font-size: 1.1rem;
    color: #1f2245;
    font-weight: 700;
    text-align: left;
}

.event-pill-list { display: grid; gap: 1rem; }
.event-pill {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.9rem 1.1rem;
    border-radius: 20px;
    border: 1px solid rgba(226,232,240,0.7);
    background: rgba(248,250,252,0.95);
    text-align: left;
}
.event-pill__icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #2563eb;
    background: linear-gradient(135deg, rgba(205,226,255,0.8), rgba(231,243,255,0.96));
    box-shadow: 0 16px 28px rgba(59,130,246,0.18);
}
.event-pill__content strong { display: block; font-size: 1.06rem; color: #1f2245; }
.event-pill__content span { font-size: 0.94rem; color: #56607c; }

.event-info {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
    padding: 0;
    margin: 1.6rem 0 0;
    text-align: left;
}
.event-info li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    font-size: 0.95rem;
    color: #56607c;
}
.event-info i { color: #2563eb; font-size: 1.15rem; margin-top: 0.2rem; }
.event-info span { display: block; font-weight: 600; color: #1f2245; margin-bottom: 0.1rem; }

.event-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
}
.event-cta__button {
    border: none;
    border-radius: 999px;
    padding: 0.9rem 2.6rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff;
    background: linear-gradient(115deg, #4c6ef5, #7c3aed 60%, #22d3ee);
    box-shadow: 0 28px 48px rgba(76,110,245,0.25);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.event-cta__button:hover,
.event-cta__button:focus {
    transform: translateY(-1px);
    box-shadow: 0 36px 60px rgba(124,58,237,0.25);
}
.event-qr {
    padding: 1.2rem;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(226,232,240,0.7);
    box-shadow: 0 20px 36px rgba(15,23,42,0.1);
}
.event-qr img { width: 160px; height: 160px; display: block; }

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media (min-width: 1024px) {
    .event-wrap {
        gap: 1.8rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .event-card--full { grid-column: 1 / -1; }
    .event-card--accent { text-align: left; }
    .event-card--accent .event-text { color: #3f2670; }
}

@media (max-width: 600px) {
    .event-wrap { padding: 0 1.2rem; gap: 1.2rem; }
    .event-card { padding: 1.8rem 1.5rem; }
    .event-info { grid-template-columns: 1fr; }
    .event-qr img { width: 140px; height: 140px; }
}
/* Mobile fine-tuning for very small screens */
.insights-hero__subtitle, .insights-card__summary { overflow-wrap: anywhere; word-break: break-word; }

@media (max-width: 480px) {
  .insights-hero { padding: 1.6rem 1.2rem; border-radius: 20px; gap: 1.4rem; }
  .insights-hero__title { font-size: 1.8rem; }
  .insights-hero__subtitle { font-size: 0.98rem; }
  .insights-hero__card { padding: 1.4rem; }
  .insights-hero__tags { gap: 0.45rem; }
  .insights-cta { width: 100%; min-height: 44px; }

  .insights-section { padding: 3rem 0; }
  .insights-grid { gap: 1rem; }
  .insights-card { padding: 1.4rem; }
  .insights-card__title { font-size: 1.2rem; }
  .insights-card__summary { font-size: 0.9rem; }
  .insights-card__cta { padding: 0.7rem 1.2rem; }

  .insights-subscribe { padding: 1.6rem 1.2rem; }
  .insights-subscribe__title { font-size: 1.5rem; }
  .insights-subscribe__desc { font-size: 0.95rem; }
  .insights-subscribe__actions { flex-direction: column; }
  .insights-subscribe__btn { width: 100%; min-height: 44px; }
}

@media (max-width: 360px) {
  .insights-hero { padding: 1.4rem 1rem; }
  .insights-hero__title { font-size: 1.65rem; }
  .insights-hero__subtitle { font-size: 0.95rem; }
  .insights-card { padding: 1.2rem; }
  .insights-card__title { font-size: 1.1rem; }
  .insights-card__summary { font-size: 0.88rem; }
}
.event-card {
    position: relative;
    border-radius: 32px;
    padding: 2.2rem 2.4rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(237,242,255,0.96) 100%);
    border: 1px solid rgba(226,232,240,0.65);
    box-shadow: 0 26px 52px rgba(15,23,42,0.12);
    backdrop-filter: blur(10px);
    text-align: center;
}
.event-card::before {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,0.35), rgba(240,244,255,0.12));
    pointer-events: none;
}
.event-card > * { position: relative; z-index: 1; }

.event-card--full { grid-column: 1; }
.event-card--accent {
    background: linear-gradient(135deg, rgba(248,230,255,0.92), rgba(224,213,255,0.92));
    color: #3f2670;
}
.event-card--accent::before { background: linear-gradient(135deg, rgba(255,255,255,0.45), rgba(255,255,255,0)); }
.event-card--quote {
    background: linear-gradient(120deg, rgba(4,7,34,0.92), rgba(28,36,70,0.92));
    color: rgba(246,249,255,0.95);
    border-color: rgba(12,18,43,0.5);
    box-shadow: 0 24px 44px rgba(4,7,34,0.35);
}
.event-card--quote::before { display: none; }

.event-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1f2245;
    margin: 0;
    line-height: 1.3;
}
.event-divider {
    width: 70px;
    height: 4px;
    border-radius: 999px;
    margin: 1.2rem auto 0;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
}
.event-text { margin: 0; font-size: 1.05rem; color: #1f2245; line-height: 1.85; }
.event-text--light { color: #56607c; margin-top: 0.6rem; }
.event-section-title {
    margin-bottom: 1.4rem;
    font-size: 1.1rem;
    color: #1f2245;
    font-weight: 700;
    text-align: left;
}

.event-pill-list { display: grid; gap: 1rem; }
.event-pill {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.9rem 1.1rem;
    border-radius: 20px;
    border: 1px solid rgba(226,232,240,0.7);
    background: rgba(248,250,252,0.95);
    text-align: left;
}
.event-pill__icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #2563eb;
    background: linear-gradient(135deg, rgba(205,226,255,0.8), rgba(231,243,255,0.96));
    box-shadow: 0 16px 28px rgba(59,130,246,0.18);
}
.event-pill__content strong { display: block; font-size: 1.06rem; color: #1f2245; }
.event-pill__content span { font-size: 0.94rem; color: #56607c; }

.event-info {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
    padding: 0;
    margin: 1.6rem 0 0;
    text-align: left;
}
.event-info li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    font-size: 0.95rem;
    color: #56607c;
}
.event-info i { color: #2563eb; font-size: 1.15rem; margin-top: 0.2rem; }
.event-info span { display: block; font-weight: 600; color: #1f2245; margin-bottom: 0.1rem; }

.event-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
}
.event-cta__button {
    border: none;
    border-radius: 999px;
    padding: 0.9rem 2.6rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff;
    background: linear-gradient(115deg, #4c6ef5, #7c3aed 60%, #22d3ee);
    box-shadow: 0 28px 48px rgba(76,110,245,0.25);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.event-cta__button:hover,
.event-cta__button:focus {
    transform: translateY(-1px);
    box-shadow: 0 36px 60px rgba(124,58,237,0.25);
}
.event-qr {
    padding: 1.2rem;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(226,232,240,0.7);
    box-shadow: 0 20px 36px rgba(15,23,42,0.1);
}
.event-qr img { width: 160px; height: 160px; display: block; }

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media (min-width: 1024px) {
    .event-wrap {
        gap: 1.8rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .event-card--full { grid-column: 1 / -1; }
    .event-card--accent { text-align: left; }
    .event-card--accent .event-text { color: #3f2670; }
}

@media (max-width: 600px) {
    .event-wrap { padding: 0 1.2rem; gap: 1.2rem; }
    .event-card { padding: 1.8rem 1.5rem; }
    .event-info { grid-template-columns: 1fr; }
    .event-qr img { width: 140px; height: 140px; }
}
@media (max-width: 640px) {
  /* 增加 Insights 页面 section 在小屏的左右内边距，避免贴边 */
  .insights-section { padding-left: 1.75rem; padding-right: 1.75rem; }
}

@media (max-width: 500px) {
  .insights-section { padding-left: 2rem; padding-right: 2rem; }
}

@media (max-width: 420px) {
  .insights-section { padding-left: 2.25rem; padding-right: 2.25rem; }
}

@media (max-width: 360px) {
  .insights-section { padding-left: 2.5rem; padding-right: 2.5rem; }
}
.event-card {
    position: relative;
    border-radius: 32px;
    padding: 2.2rem 2.4rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(237,242,255,0.96) 100%);
    border: 1px solid rgba(226,232,240,0.65);
    box-shadow: 0 26px 52px rgba(15,23,42,0.12);
    backdrop-filter: blur(10px);
    text-align: center;
}
.event-card::before {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,0.35), rgba(240,244,255,0.12));
    pointer-events: none;
}
.event-card > * { position: relative; z-index: 1; }

.event-card--full { grid-column: 1; }
.event-card--accent {
    background: linear-gradient(135deg, rgba(248,230,255,0.92), rgba(224,213,255,0.92));
    color: #3f2670;
}
.event-card--accent::before { background: linear-gradient(135deg, rgba(255,255,255,0.45), rgba(255,255,255,0)); }
.event-card--quote {
    background: linear-gradient(120deg, rgba(4,7,34,0.92), rgba(28,36,70,0.92));
    color: rgba(246,249,255,0.95);
    border-color: rgba(12,18,43,0.5);
    box-shadow: 0 24px 44px rgba(4,7,34,0.35);
}
.event-card--quote::before { display: none; }

.event-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1f2245;
    margin: 0;
    line-height: 1.3;
}
.event-divider {
    width: 70px;
    height: 4px;
    border-radius: 999px;
    margin: 1.2rem auto 0;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
}
.event-text { margin: 0; font-size: 1.05rem; color: #1f2245; line-height: 1.85; }
.event-text--light { color: #56607c; margin-top: 0.6rem; }
.event-section-title {
    margin-bottom: 1.4rem;
    font-size: 1.1rem;
    color: #1f2245;
    font-weight: 700;
    text-align: left;
}

.event-pill-list { display: grid; gap: 1rem; }
.event-pill {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.9rem 1.1rem;
    border-radius: 20px;
    border: 1px solid rgba(226,232,240,0.7);
    background: rgba(248,250,252,0.95);
    text-align: left;
}
.event-pill__icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #2563eb;
    background: linear-gradient(135deg, rgba(205,226,255,0.8), rgba(231,243,255,0.96));
    box-shadow: 0 16px 28px rgba(59,130,246,0.18);
}
.event-pill__content strong { display: block; font-size: 1.06rem; color: #1f2245; }
.event-pill__content span { font-size: 0.94rem; color: #56607c; }

.event-info {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
    padding: 0;
    margin: 1.6rem 0 0;
    text-align: left;
}
.event-info li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    font-size: 0.95rem;
    color: #56607c;
}
.event-info i { color: #2563eb; font-size: 1.15rem; margin-top: 0.2rem; }
.event-info span { display: block; font-weight: 600; color: #1f2245; margin-bottom: 0.1rem; }

.event-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
}
.event-cta__button {
    border: none;
    border-radius: 999px;
    padding: 0.9rem 2.6rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff;
    background: linear-gradient(115deg, #4c6ef5, #7c3aed 60%, #22d3ee);
    box-shadow: 0 28px 48px rgba(76,110,245,0.25);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.event-cta__button:hover,
.event-cta__button:focus {
    transform: translateY(-1px);
    box-shadow: 0 36px 60px rgba(124,58,237,0.25);
}
.event-qr {
    padding: 1.2rem;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(226,232,240,0.7);
    box-shadow: 0 20px 36px rgba(15,23,42,0.1);
}
.event-qr img { width: 160px; height: 160px; display: block; }

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media (min-width: 1024px) {
    .event-wrap {
        gap: 1.8rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .event-card--full { grid-column: 1 / -1; }
    .event-card--accent { text-align: left; }
    .event-card--accent .event-text { color: #3f2670; }
}

@media (max-width: 600px) {
    .event-wrap { padding: 0 1.2rem; gap: 1.2rem; }
    .event-card { padding: 1.8rem 1.5rem; }
    .event-info { grid-template-columns: 1fr; }
    .event-qr img { width: 140px; height: 140px; }
}