.event-article {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.entry-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2.5rem;
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
}

.event-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0;
}

.info-icon {
    width: 24px;
    color: #666;
}

.info-icon i {
    font-size: 1.25rem;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1.125rem;
    color: #333;
}

.event-description img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
}

.event-featured-wrapper {
    position: relative;
    padding: 2rem 0;
}

.event-featured-image {
    border-radius: 20px;
    overflow: hidden;
}

.event-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
    height: 100%;
}

.event-dots {
    position: absolute;
    z-index: 2;
    width: 60px;
    height: auto;
}

.event-dots--top {
    top: 0;
    left: 0;
    transform: translate(-30%, -30%);
    z-index: -1;
}

.event-dots--bottom {
    bottom: 0;
    right: 0;
    transform: translate(30%, 30%);
    z-index: -1;
}

@media (max-width: 700px) {
    .event-dots--top {
        top: 33px;
        left: 0px;
    }
    .event-dots--bottom {
        bottom: 33px;
        right: 0;
        transform: translate(30%, 30%);
        z-index: -1;
    }
    .event-dots {
        width: 40px;
    }
}

.event-add-calendar-wrapper {
    display: flex;
    margin: 2.5rem 0 7rem 0;
    position: relative;
}

.event-add-calendar-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    position: relative;
    min-width: 220px;
    padding: 0.9rem 2.2rem 0.9rem 1.5rem;
}

.event-add-calendar-btn .ltf-btn__icon-calendar {
    margin-right: 0.7rem;
    display: flex;
    align-items: center;
}

.event-add-calendar-btn .ltf-btn__icon-dropdown {
    margin-left: auto;
    font-size: 1.2em;
    display: flex;
    align-items: center;
}

.event-calendar-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    min-width: 220px;
    z-index: 10;
    padding: 0.5rem 0;
}

.event-calendar-dropdown.active {
    display: block;
}

.event-calendar-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 1.5rem;
    color: #222;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s;
}

.event-calendar-dropdown a:hover {
    background: #f2f2f2;
}

.event-pretitle {
    color: var(--ltf-pink);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ltf-blue);
    margin-bottom: 1.1rem;
    line-height: 1.1;
}

.event-description {
    font-size: 1.18rem;
    color: var(--ltf-black);
    margin-bottom: 2rem;
    line-height: 1.25;
}

/* ul li {
    margin-bottom: 1rem;
}

ul li:last-child {
    margin-bottom: 2rem;
} */

.btn-calendar-chevron {
    width: 16px;
    height: 16px;
    margin-left: 12px;
}

@media (min-width: 768px) {
    .event-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
} 