/* =EVENTBRITE CONTENT - MODERN CARD STYLE
-------------------------------------------------------------- */
.workshop-register {
    background: #fdfdfd; /* Very light grey/off-white */
    padding: 50px 60px;
    margin-top: 60px;
    color: #333333; /* Darker grey text for readability */
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    /* Subtle, soft shadow */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 1px 8px rgba(0, 0, 0, 0.02);
    max-width: 600px; /* Optional: keeps the card from stretching too wide */
    margin-left: auto;
    margin-right: auto;
}

.workshop-register p,
.workshop-register li {
    color: #555555;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
}

.register-heading {
    color: #1a1a1a;
    font-size: 26px;
    font-weight: 700;
    margin: 30px 0 10px 0;
}

/* Updated divider to use a more subtle grey */
.register-divider {
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        #cccccc,
        #cccccc 4px,
        transparent 4px,
        transparent 8px
    );
    margin: 20px 0;
}

/* Updated Date List with Bullets */
.register-dates {
    list-style: disc; /* Enables standard bullet points */
    padding-left: 20px; /* Moves bullets inside the card container */
    margin: 20px 0;
}

.register-dates li {
    margin-bottom: 12px;
    font-weight: 500;
    color: #333333;
    /* Optional: Custom bullet color */
    &::marker {
        color: #F05537; /* Uses the Eventbrite orange for the bullets */
    }
}

/* Main Eventbrite Button */
.register-cta {
    display: inline-block;
    margin-top: 25px;
    padding: 16px 36px;
    background-color: #F05537; /* Eventbrite orange */
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(240, 85, 55, 0.3);
}

.register-cta:hover {
    background-color: #d9472c;
    transform: translateY(-2px); /* Slight lift on hover */
    box-shadow: 0 6px 20px rgba(240, 85, 55, 0.4);
}