/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Poppins, sans-serif;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    color: #5d516c;
    background-color: #fff;
}

.orfeo-events-wrapper {
    background: rgba(255, 255, 255, .55);
    border-radius: 5px;
    padding: 30px;
    box-shadow: 2px 7px 18px rgba(228, 155, 148, 0.2);
    backdrop-filter: blur(10px);
    max-width: 100%;
}

.orfeo-grid, .orfeo-grid-item {
    width: 100%;
}

.orfeo-grid-inner {
    margin: 0 -10px;
}

.orfeo-grid-item {
    display: inline-block;
    padding: 0 10px;
    vertical-align: top;
    float: left;
}

.orfeo-event-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 10px;
    margin-bottom: 20px;
    background: #fff;
}

.orfeo-event-date {
    color: #014F59;
    font-size: 18px;
    min-width: 85px;
    font-weight: 600;
    margin-right: 32px;
    flex-shrink: 0;
}

.orfeo-event-heading {
    flex: 1;
}

.orfeo-event-title {
    color: #014F59;
    font-size: 18px;
    font-weight: 600;
}

.orfeo-event-title-link {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease-out;
}

.orfeo-event-title-link:hover {
    color: rgba(56, 33, 74, 0.7);
}

.orfeo-event-location {
    font-size: 14px;
    color: #5d516c;
}

.orfeo-event-tickets-link {
    flex-shrink: 0;
}

.orfeo-btn {
    color: #38214A;
    background: #FFF;
    font-size: 14px;
    font-weight: 600;
    line-height: 2em;
    text-decoration: none;
    border-radius: 4em;
    box-shadow: 0 0 10px rgba(245, 216, 212, 0.8);
    padding: 7px 20px;
    transition: all .35s ease-out;
}

.orfeo-btn:hover {
    box-shadow: 0 10px 10px rgba(56, 33, 74, 0.05);
}

.orfeo-btn-text {
    display: inline-block;
}

.orfeo-clear::after {
    content: '';
    display: table;
    clear: both;
}

.orfeo-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.orfeo-page-btn {
    display: inline-flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 14px;
    border: 2px solid transparent;
    background: #fff;
    transition: all .3s ease;
    cursor: pointer;
}

.orfeo-current {
    border-color: #38214A;
    font-weight: 600;
}

.orfeo-num-btn:hover {
    border-color: #38214A;
    box-shadow: 0 0 0 2px rgba(56, 33, 74, 0.2);
    transform: scale(1.03);
}

.orfeo-nav-btn {
    background: #f8f9fa;
}

.orfeo-nav-btn:hover {
    border-color: #38214A;
    box-shadow: 0 0 0 2px rgba(56, 33, 74, 0.2);
    transform: scale(1.03);
}

.orfeo-disabled {
    opacity: .4;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 768px) {
    .orfeo-event-inner {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .orfeo-page-btn {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
}