
:root {
    --bg-main: #eef2f8;
    --bg-surface: #ffffff;
    --bg-soft: #f6f8fc;
    --color-primary: #244da8;
    --color-primary-light: #5b82dd;
    --color-text: #161b28;
    --color-text-secondary: #596275;
    --color-border: #dbe3f2;
    --color-success: #16a34a;
    --shadow-card: 0 8px 24px rgba(35, 64, 122, 0.09);
    --radius-lg: 16px;
    --radius-md: 10px;
    --radius-sm: 6px;
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 18px;
    --space-lg: 24px;
    --space-xl: 32px;
    --container-width: 1200px;
}
.page {
    display: none;
    animation: fadeIn 0.28s ease;
    width: 70%;
    max-width: 1488px;
    margin: 0 auto;
}

.page.active {
    display: block;
}

.hero {
    min-height: 360px;
    margin-bottom: 16px;
    border: 1px solid #d8e4fb;
    box-shadow: 0 14px 34px rgba(36, 77, 168, 0.14);
    /* margin-bottom: 20px; */
    display: flex;
    /* min-height: 340px; */
}

.hero-text {
    width: 44%;
    padding: 56px 48px;
    background: linear-gradient(160deg, #f7f9ff 0%, #ecf2ff 100%);
}

.hero-text h1 {
    margin: 0 0 14px;
    font-size: 42px;
    letter-spacing: 1px;
}

.hero-text p {
    margin: 0;
    color: var(--color-text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

.hero-image {
    width: 56%;
    background-size: cover;
    background-position: center;
    position: relative;
    background: radial-gradient(circle at 16% 18%, #f0f5ff 0%, #dce8ff 44%, #c8dafd 100%);
}

.hero-badge {
    position: absolute;
    right: 20px;
    top: 18px;
    background: rgba(255, 255, 255, 0.86);
    color: #234185;
    border-radius: 18px;
    padding: 6px 12px;
    font-size: 12px;
    border: 1px solid #dce6fa;
}

.event-hot-badge {
    background: linear-gradient(90deg, #ff5a3d, #ff8b3d);
    color: #fff;
    border: 1px solid #ffd2b8;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
    padding: 9px 16px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(255, 91, 61, 0.36);
}

.section {
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    padding: 28px 30px 34px;
    margin-bottom: 20px;
}

.section-title {
    margin: 0 0 20px;
    text-align: center;
    font-size: 34px;
}

.chip-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.chip {
    background: #ffffff;
    border: 1px solid #d8e2f7;
    border-radius: 8px;
    color: #3f4c6e;
    padding: 7px 14px;
    font-size: 13px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.card {
    background: var(--bg-surface);
    border-radius: 12px;
    border: 1px solid #e3eaf8;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(40, 64, 114, 0.06);
}

.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 14px;
}

.card-title {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 700;
}

.card-desc {
    margin: 0;
    line-height: 1.7;
    color: var(--color-text-secondary);
    font-size: 14px;
}

.panel {
    background: var(--bg-surface);
    border: 1px solid #dce4f6;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 16px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.table th,
.table td {
    border: 1px solid #e3eaf8;
    padding: 12px 14px;
    text-align: left;
    font-size: 14px;
}

.table th {
    background: #f5f8ff;
}

.event-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
}

.timeline-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    align-items: flex-start;
}

.timeline-item i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e8efff;
    color: #2f56af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-top: 2px;
}

.actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn {
    border: none;
    cursor: pointer;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(90deg, #244da8, #5b82dd);
    color: #fff;
    box-shadow: 0 6px 16px rgba(40, 84, 181, 0.25);
}

.btn-secondary {
    border: 1px solid #cdd8ef;
    color: #34486d;
    background: #fff;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
}

#page-event-form #signupForm > .form-grid {
    align-items: start;
}

@media (max-width: 768px) {
    #page-event-form #signupForm > .form-grid {
        grid-template-columns: 1fr;
    }
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    color: #24324e;
    font-weight: 600;
    font-size: 14px;
}

.field input,
.field select,
.field textarea {
    border: 1px solid #ccd8ef;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
    background: #fff;
    box-sizing: border-box;
}

.field textarea {
    min-height: 96px;
    resize: vertical;
}

.upload {
    border: 2px dashed #b8caeb;
    border-radius: 10px;
    background: #f8fbff;
    text-align: center;
    padding: 24px;
    color: #4b5f89;
    font-size: 14px;
}

.upload-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.upload-item {
    border: 1px solid #dbe4f8;
    border-radius: 12px;
    background: #fff;
    padding: 12px;
}

.upload-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.upload-head strong {
    font-size: 14px;
    color: #24324e;
}

.upload-badge {
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid #dbe4f8;
    background: #f7faff;
    color: #3c568f;
    white-space: nowrap;
}

.upload-badge.required {
    border-color: #ffd2b8;
    background: rgba(255, 90, 61, 0.12);
    color: #c23a1e;
    font-weight: 700;
}

.upload-badge.bonus {
    border-color: #c6d7f7;
    background: rgba(45, 89, 183, 0.1);
    color: #234896;
    font-weight: 700;
}

.file-input {
    width: 100%;
    border: 1px solid #ccd8ef;
    border-radius: 10px;
    padding: 10px;
    background: #fff;
    font-size: 13px;
    color: #3f4c6e;
}

.status-box {
    max-width: 760px;
    margin: 28px auto;
    background: #fff;
    border: 1px solid #d9e6ff;
    border-radius: 14px;
    text-align: center;
    padding: 36px 28px;
}

.status-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #e9f9ef;
    color: var(--color-success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.tiny {
    font-size: 12px;
    color: #63708c;
}

.event-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.event-nav .chip {
    cursor: default;
    background: #f1f5ff;
    border-color: #d4def3;
    color: #2f4f95;
    font-weight: 600;
}

.event-anchor-btn {
    cursor: pointer !important;
    transition: all 0.2s ease;
}

.event-anchor-btn.active {
    background: linear-gradient(90deg, #2d59b7, #4d79d8);
    border-color: #2d59b7;
    color: #fff;
    box-shadow: 0 6px 14px rgba(45, 89, 183, 0.24);
}

#page-event-detail .hero {
    min-height: 360px;
    margin-bottom: 16px;
    border: 1px solid #d8e4fb;
    box-shadow: 0 14px 34px rgba(36, 77, 168, 0.14);
    margin-top: 50px;
}

#page-event-detail .hero-text {
    width: 48%;
    padding: 46px 40px;
    background: linear-gradient(145deg, #f8fbff 0%, #e9f1ff 44%, #dbe8ff 100%);
    position: relative;
    overflow: hidden;
}

#page-event-detail .hero-text::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -110px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(73, 120, 214, 0.26) 0%, rgba(73, 120, 214, 0) 70%);
    pointer-events: none;
}

#page-event-detail .hero-text h1 {
    font-size: 44px;
    margin: 0 0 14px;
    color: #173676;
    letter-spacing: 1px;
    line-height: 1.18;
}

#page-event-detail .hero-text p {
    margin: 0;
    line-height: 1.78;
    color: #425681;
}

#page-event-detail .actions {
    margin-top: 18px;
    gap: 10px;
}

#page-event-detail .section {
    padding: 24px 24px 28px;
    margin-bottom: 16px;
    border: 1px solid #dce6fa;
    background: linear-gradient(180deg, #f4f8ff 0%, #edf3fe 100%);
    min-width: 0;
    margin-top:50px;
}

#page-event-detail .panel {
    padding: 18px;
    margin-bottom: 12px;
    border: 1px solid #d8e4fb;
    box-shadow: 0 7px 16px rgba(43, 83, 172, 0.08);
    min-width: 0;
}

#page-event-detail .event-nav {
    margin-bottom: 14px;
    position: sticky;
    top: 84px;
    z-index: 6;
    background: rgba(244, 248, 255, 0.9);
    padding: 8px;
    border: 1px solid #d8e4fb;
    border-radius: 12px;
    backdrop-filter: blur(2px);
}

#page-event-detail .event-kpi,
#page-event-detail .event-grid-2 {
    gap: 12px;
    margin-bottom: 14px;
}

#page-event-detail .timeline-item {
    margin-bottom: 10px;
}

#page-event-detail .qa-item {
    margin-bottom: 10px;
    padding: 12px 14px;
}

.event-kpi {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.event-kpi .card {
    padding: 14px;
    border: 1px solid #d8e3fb;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.event-kpi .card-title {
    font-size: 28px;
    margin-bottom: 6px;
    color: #1f4291;
    line-height: 1.2;
}

.event-grid-2 {
    /*display: grid;*/
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 16px;
    min-width: 0;
}

.event-grid-single {
    grid-template-columns: 1fr;
}

#anchor-core {
    overflow: hidden;
}

.event-subtitle {
    margin: 0 0 10px;
    font-size: 19px;
    color: #1b3469;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-subtitle i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e6efff;
    color: #2d59b7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.track-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.track-item {
    border: 1px solid #d6e2fb;
    border-radius: 12px;
    padding: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.track-item h4 {
    margin: 0 0 8px;
    font-size: 16px;
    color: #27458b;
}

.score-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.score-item {
    background: #f7faff;
    border: 1px solid #dce6fb;
    border-radius: 10px;
    padding: 12px;
}

.qa-item {
    border: 1px solid #dce6fa;
    border-radius: 10px;
    padding: 12px 14px;
    background: #fff;
    margin-bottom: 10px;
}

.qa-q {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
    color: #213763;
}

.qa-a {
    margin: 0;
    font-size: 14px;
    color: #576789;
    line-height: 1.7;
}

.stepper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.step {
    border: 1px solid #dbe5f8;
    border-radius: 10px;
    background: #fff;
    padding: 10px 12px;
    font-size: 13px;
    color: #455b88;
    display: flex;
    align-items: center;
    gap: 8px;
}

.step.active {
    background: #eef4ff;
    border-color: #c6d7f7;
    color: #234896;
    font-weight: 600;
}

.event-media {
    width: 100%;
    /*height: 100%;*/
    box-sizing: border-box;
    padding: 20px;
    background: radial-gradient(circle at 16% 18%, #f0f5ff 0%, #dce8ff 44%, #c8dafd 100%);
}

.event-media-card {
    position: relative;
    width: 100%;
    height: 100%;
    /*min-height: 320px;*/
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #c9d9fb;
    box-shadow: 0 16px 32px rgba(29, 66, 153, 0.22);
    background: #0b1c49;
}
.event-media-card img{
    width: 100%;
}
.event-media-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.08) contrast(1.03);
}

.event-media-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(5, 26, 75, 0) 0%, rgba(5, 26, 75, 0.86) 70%);
    padding: 44px 18px 16px;
    color: #fff;
    z-index: 2;
}

.event-media-overlay strong {
    font-size: 20px;
    display: block;
    margin-bottom: 4px;
}

.event-poster-tags {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.event-poster-tags span {
    font-size: 12px;
    border-radius: 999px;
    border: 1px solid rgba(224, 235, 255, 0.55);
    padding: 4px 10px;
    background: rgba(224, 235, 255, 0.18);
    color: #eef4ff;
}

.event-hotline {
    margin-top: 14px;
    background: linear-gradient(90deg, #edf3ff, #f7f9ff);
    border: 1px solid #d8e4fb;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 14px;
    color: #2c4f98;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.award-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.award-item {
    border: 1px solid #d7e4fc;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff, #f6f9ff);
    padding: 12px;
}

.award-item h4 {
    margin: 0 0 7px;
    color: #27458b;
    font-size: 15px;
}

.award-money {
    font-size: 24px;
    color: #1f4291;
    font-weight: 700;
    margin-bottom: 5px;
}

.medal-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 8px;
}

.medal-card {
    border: 1px solid #dbe6fb;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    padding: 12px 10px;
    box-shadow: 0 8px 16px rgba(42, 82, 170, 0.08);
    text-align: center;
}

.medal-card h4 {
    margin: 0 0 6px;
    font-size: 15px;
    color: #1f4291;
}

.medal-card .award-money {
    margin: 0 0 4px;
}

.medal-gold h4 i { color: #f5b301; }
.medal-silver h4 i { color: #94a3b8; }
.medal-bronze h4 i { color: #c07a44; }
.medal-final h4 i { color: #f59f0a; }

.summary-block {
    border: 1px solid #d8e4fb;
    border-radius: 12px;
    background: #fff;
    padding: 12px;
}

.summary-title {
    margin: 0 0 8px;
    font-size: 15px;
    color: #1f4291;
    display: flex;
    align-items: center;
    gap: 8px;
}

.policy-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.policy-list li {
    font-size: 13px;
    line-height: 1.55;
    color: #3d5078;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.policy-list li i {
    margin-top: 3px;
    color: #2d59b7;
    font-size: 11px;
}

.poster-timeline-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: block;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: #b5c8ef #edf3ff;
}

.poster-timeline-wrap::-webkit-scrollbar {
    height: 9px;
}

.poster-timeline-wrap::-webkit-scrollbar-track {
    background: #edf3ff;
    border-radius: 999px;
}

.poster-timeline-wrap::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #95b3ea, #5f86d4);
    border-radius: 999px;
}

.poster-timeline {
    position: relative;
    margin-top: 14px;
    padding: 26px 8px 8px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
}

.poster-timeline::before {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: 12px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #95b3ea 0%, #2f5eb9 45%, #95b3ea 100%);
}

.poster-timeline .timeline-item {
    position: relative;
    margin: 0;
    padding-top: 18px;
    min-width: 0;
    flex: 1 1 0;
    display: block;
}

.poster-dot {
    position: absolute;
    left: 10px;
    top: -2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ffffff 0%, #d5e4ff 34%, #2c5bb7 100%);
    border: 2px solid #f3f8ff;
    box-shadow: 0 6px 14px rgba(45, 89, 183, 0.24);
    z-index: 2;
}

.poster-time {
    display: inline-block;
    margin-bottom: 6px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    color: #284f9d;
    border: 1px solid #cfe0fb;
    background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
    font-weight: 600;
    letter-spacing: 0.2px;
}

.poster-content {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    border: 1px solid #d8e4fb;
    border-radius: 12px;
    padding: 11px 12px;
    box-shadow: 0 8px 16px rgba(44, 84, 173, 0.08);
    min-height: 128px;
}

.poster-content strong {
    color: #173676;
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 1.35;
}

.poster-content .tiny {
    color: #4f6188;
    line-height: 1.6;
}

.flow-map {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.flow-step {
    position: relative;
    min-height: 112px;
    padding: 12px 10px 10px;
    border: 1px solid #d8e4fb;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
    box-shadow: 0 8px 16px rgba(44, 84, 173, 0.08);
    text-align: center;
}

.flow-step::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -12px;
    top: 45px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #eaf1ff;
    color: #3c69c4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    box-shadow: 0 4px 10px rgba(45, 89, 183, 0.16);
    z-index: 2;
}

.flow-step:nth-child(4)::after {
    display: none;
}

.flow-index {
    width: 32px;
    height: 28px;
    margin: 0 auto 6px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2d59b7, #6f95e8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 8px 16px rgba(45, 89, 183, 0.26);
}

.flow-icon {
    color: #2d59b7;
    font-size: 16px;
    margin-bottom: 6px;
}

.flow-step strong {
    display: block;
    color: #173676;
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.35;
}

.flow-step .tiny {
    color: #52658c;
    line-height: 1.5;
}

.org-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #d8e4fb;
    background: #fff;
    box-shadow: 0 8px 16px rgba(44, 84, 173, 0.06);
}

.org-table th,
.org-table td {
    padding: 13px 16px;
    text-align: left;
    border-bottom: 1px solid #e5ecfb;
    font-size: 14px;
}

.org-table th {
    color: #21478f;
    background: linear-gradient(90deg, #eaf1ff, #f4f8ff);
    font-weight: 700;
}

.org-table tr:last-child td {
    border-bottom: none;
}

.org-role {
    color: #173676;
    font-weight: 700;
    white-space: nowrap;
}

.org-owner {
    color: #273c67;
    font-weight: 600;
}

.select-mechanism {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 8px;
}

.mech-block {
    border: 1px solid #d8e4fb;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    padding: 14px;
}

.mech-title {
    margin: 0 0 10px;
    color: #1a3a78;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mech-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.mech-list li {
    color: #3f527a;
    font-size: 14px;
    line-height: 1.6;
}

.mech-kpi {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.mech-kpi-item {
    border: 1px solid #d8e4fb;
    border-radius: 10px;
    background: #fff;
    text-align: center;
    padding: 10px 8px;
}

.mech-kpi-item strong {
    display: block;
    color: #1f4291;
    font-size: 13px;
    margin-bottom: 4px;
}

.mech-kpi-item span {
    color: #f59f0a;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
}

.example-text {
    color: #7f8aa3;
    font-style: italic;
}

@keyframes fadeIn {
    from { opacity: 0.15; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}
/*#page-event-detail{*/
/*    width: 100%;*/
/*}*/
.section{
    /*width: 70%;*/
    /*max-width: 1488px;*/
    /*margin: 0 auto;*/
}
button, input, optgroup, select, textarea{
    -webkit-appearance: auto;
}

/* 赛事咨询热线卡片 */
.event-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: 14px;
    padding: 18px 20px;
    border-radius: 14px;
    background: linear-gradient(120deg, #eef4ff 0%, #f7faff 100%);
    border: 1px solid #d3e0fb;
}

.event-contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    background: linear-gradient(135deg, #3b6fd4, #2c4f98);
    box-shadow: 0 8px 18px rgba(44, 79, 152, 0.28);
    flex-shrink: 0;
}

.event-contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-contact-info .contact-name {
    font-size: 15px;
    color: #24324e;
    font-weight: 600;
}

.event-contact-phone {
    font-size: 24px;
    font-weight: 800;
    color: #1b3469;
    letter-spacing: 1px;
    text-decoration: none;
}

.event-contact-phone:hover {
    color: #2c4f98;
}

.event-contact-tip {
    flex: 1 1 240px;
    min-width: 200px;
    margin: 0;
    font-size: 13px;
    color: #4f6188;
    line-height: 1.6;
}
