/* ===============================
   Event Detail Page Styling
   =============================== */

/* Page container */
.common-content-container {
    display: flex;
    justify-content: left;
    padding: 60px 20px;
    width: 90.5%;
}

/* Main content card */
.common-content {
    width: 90%;
    max-width: none;      /* ← THIS is the key */
    padding: 40px 50px;
    border-radius: 12px;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); */
     color: var(--mywhite);
}

/* Headings */
.common-content h1 {
    font-size: 2.95rem;
    font-weight: 100;
    margin-bottom: 10px;
    color: var(--myblue);
    text-align: left;
}

.common-content h3 {
    font-size: 1.8rem;
    font-weight: 50;
    margin-bottom: 30px;
    color: var(--mywhite);
    text-align: left;
}

.common-content h4 {
    margin-top: 55px;
    margin-bottom: 10px;
    font-size: 1.8rem;
    color: var(--myblue);
    text-align: left;
    /* border-bottom: 2px solid #eaeaea; */
    padding-bottom: 6px;
}

/* Meta information */
.common-content p {
    margin: 6px 0;
    font-size: 1.35rem;
    font-weight: 100;
}

.common-content p strong {
    color: var(--myblue);
}

/* Lists */
.common-content ul {
    list-style: none;     /* removes bullets */
    padding-left: 0;      /* removes left indentation */
    margin-left: 0;
}

.common-content li {
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 1.35rem;
    font-weight: 100;
    text-align: left;
}

/* Timetable emphasis */
.common-content ul li strong {
    color: #1d4ed8;
}

/* Error message */
.text-danger {
    color: #c0392b;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .common-content {
        padding: 30px 25px;
    }

    .common-content h1 {
        font-size: 1.8rem;
    }

    .common-content h3 {
        font-size: 1.1rem;
    }
}
