.angie-event-hub-6016043f {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Date Card */
.angie-event-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #E8E5DC;
    padding: 1.5rem;
    border-radius: 8px;
    flex-wrap: wrap;
}
.angie-event-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #dcdcdc;
    background: #fff;
    width: 80px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.angie-event-badge-top {
    background: #687948;
    color: #fff;
    width: 100%;
    padding: 4px 0;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}
.angie-event-badge-day {
    font-size: 2rem;
    font-weight: bold;
    color: #687948;
    line-height: 1;
    padding: 5px 0;
}
.angie-event-badge-bottom {
    font-size: 0.75rem;
    color: #999;
    padding-bottom: 5px;
    text-transform: uppercase;
}
.angie-event-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}
.angie-event-title {
    margin: 0;
    font-size: 1.2rem;
    color: #2D2A26;
    font-weight: bold;
}
.angie-event-meta {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #5A5A5A;
}
.angie-event-meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.angie-event-meta-icon i {
    font-size: 1.2em;
}
.angie-event-meta-icon svg {
    width: 1.2em;
    height: 1.2em;
    fill: currentColor;
}

/* Sections */
.angie-section-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    font-weight: bold;
    margin: 0 0 1rem 0;
}

/* Calendar Buttons */
.angie-cal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.angie-cal-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}
.angie-cal-button:hover {
    background: #f9f9f9;
}
.angie-cal-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.angie-cal-button-icon i {
    font-size: 1.2em;
}
.angie-cal-button-icon svg {
    width: 1.2em;
    height: 1.2em;
    fill: currentColor;
}

/* Steps */
.angie-steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    counter-reset: angie-step-counter;
}
.angie-step-item {
    display: flex;
    gap: 1rem;
}
.angie-step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #687948;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}
.angie-steps-list.auto-number .angie-step-item {
    counter-increment: angie-step-counter;
}
.angie-steps-list.auto-number .angie-step-number::before {
    content: counter(angie-step-counter);
    color: inherit;
    font-size: inherit;
}
.angie-step-number-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}
.angie-step-number-icon i {
    font-size: 1em;
}
.angie-step-number-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}
.angie-step-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.angie-step-title {
    margin: 0;
    font-weight: bold;
    color: #2D2A26;
    font-size: 1rem;
}
.angie-step-desc {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}