.events-single-template {
    max-width: 900px;
    margin: 0 auto;
    font-family: sans-serif;
}
.events-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    color: #111827;
}
.events-hero-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.events-info-panel {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.events-info-panel div {
    font-size: 16px;
    color: #4b5563;
}
.events-info-panel strong {
    color: #111827;
    display: block;
    margin-bottom: 8px;
}
.events-description {
    line-height: 1.8;
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 40px;
}
.events-cta-section {
    text-align: center;
    margin-top: 40px;
    padding: 40px 0;
    border-top: 1px solid #e5e7eb;
}
.events-primary-btn {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: background 0.2s, transform 0.1s;
}
.events-primary-btn:hover {
    background: #1d4ed8;
    color: #fff;
    transform: translateY(-2px);
}