/* Events Series - Frontend Styles */

/* Single Series Page */
.series-single__hero {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.series-single__hero-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.series-single__header {
    margin-bottom: 30px;
}

.series-single__title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.series-single__excerpt {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.series-single__excerpt p {
    margin: 0;
}

.series-single__content {
    margin-bottom: 40px;
}

/* Shared btn-main style (if not provided by theme) */
.series-card__footer .btn-main,
.series-tile__footer .btn-main,
.series-slider-footer .btn-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #641822;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    cursor: pointer;
}

.series-card__footer .btn-main:hover,
.series-tile__footer .btn-main:hover,
.series-slider-footer .btn-main:hover {
    background: #4a1018;
    color: #fff;
    text-decoration: none;
}

.series-card__footer .btn-main svg,
.series-tile__footer .btn-main svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 768px) {
    .series-single__title {
        font-size: 28px;
    }

    .series-single__hero-img {
        max-height: 250px;
    }
}
