/**
 * Single Event Page Styles
 */

 .ct-event-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    padding: 0;
    border: none;
}

.ct-event-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
    align-items: start;
}

.ct-event-details-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ct-event-date-location-section {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}

.ct-event-date-section,
.ct-event-location-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ct-detail-heading,
.ct-location-heading {
    margin: 0;
}

.ct-event-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ct-event-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4A9BA7;
    margin-top: 2px;
}

.ct-event-detail-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.ct-event-venue-name {
    display: inline;
}

.ct-event-venue-name a {
    color: #4A9BA7;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.ct-event-venue-name a:hover {
    color: #357ABD;
}

.ct-event-address {
    display: inline;
    color: #333;
    font-size: 16px;
}

.ct-event-address a {
    color: #4A9BA7;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.ct-event-address a:hover {
    color: #357ABD;
}

.ct-event-image {
    position: relative;
}

.ct-event-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.ct-event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.ct-event-tag {
    display: inline-block;
    padding: 6px 12px;
    background: #f0f0f0;
    color: #666;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

.ct-event-contact-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ct-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.ct-agenda-label {
    font-size: 24px;
    font-weight: 400;
    color: #666;
}

.ct-contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ct-event-contact-item {
    display: flex;
    align-items: start;
    gap: 12px;
}

.ct-contact-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4A9BA7;
    margin-top: 4px;
}

.ct-contact-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.ct-contact-text strong {
    font-weight: 600;
    margin-right: 8px;
}

.ct-contact-text a {
    color: #4A9BA7;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ct-contact-text a:hover {
    color: #357ABD;
    text-decoration: underline;
}

.ct-extension {
    margin-left: 5px;
    color: #666;
}


.ct-event-content-section {
    margin: 40px 0 0 0;
}

.ct-event-content-section .ct-section-title {
    margin-bottom: 20px;
}

.ct-event-content {
    margin: 0 0 25px 0;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.ct-event-content h2,
.ct-event-content h3,
.ct-event-content h4 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.ct-event-content p {
    margin-bottom: 15px;
}

.ct-event-content ul,
.ct-event-content ol {
    margin-bottom: 15px;
    padding-left: 30px;
}

.ct-event-agenda {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ct-agenda-item {
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.ct-agenda-item:last-child {
    border-bottom: none;
}

.ct-agenda-time {
    font-weight: 600;
    color: #4A9BA7;
    margin-right: 8px;
}

.ct-agenda-item strong {
    font-weight: 600;
    color: #333;
}

.ct-event-map {
    margin: 40px 0;
}

.ct-event-map h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
}

.ct-event-map iframe {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .ct-event-single {
        padding: 20px 15px;
    }

    .ct-event-title {
        font-size: 28px;
        flex-wrap: wrap;
    }

    .ct-event-main-content {
        grid-template-columns: 2fr 1fr;
        gap: 20px;
    }

    .ct-event-contact-section {
        padding: 20px;
    }

    .ct-section-title {
        font-size: 20px;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .ct-event-title {
        font-size: 24px;
    }

    .ct-event-detail-text {
        font-size: 15px;
    }

    .ct-contact-text {
        font-size: 14px;
    }
}

