.aida-events-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    width: 100%;
    margin: 0;
}



/* .page-id-3580 main, .page-id-3585 main  {
    max-width:1440px !important;
    padding:60px 0px;
}

.page-id-3580 main .entry-title, .page-id-3585 main .entry-title  {
   max-width:1440px !important;
   text-align:left !important;
   margin-bottom:30px;
   font-size:44px;
} */

.aida-single-event__title{
    font-size:44px !important;
}

.aida-event-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #dce7f1;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 36px rgba(25, 69, 105, 0.09);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.aida-event-card a br{
	display:none;
}
.aida-event-card__badge  br{
	display:none;
}

.aida-event-card:hover {
    transform: translateY(-5px);
    border-color: #bed8eb;
    box-shadow: 0 20px 48px rgba(25, 69, 105, 0.15);
}

.aida-event-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: 26px;
    border-bottom: 1px solid #e1ebf3;
    background:
        linear-gradient(
            145deg,
            #f8fbfe 0%,
            #edf5fb 100%
        );
}

.aida-event-card__image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.aida-event-card__image {
    display: block;
    width: 100%;
    max-width: 260px;
    height: 160px;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.aida-event-card:hover .aida-event-card__image {
    transform: scale(1.03);
}

.aida-event-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
}

.aida-event-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 14px;
    padding: 6px 13px;
    border-radius: 999px;
    background: #f5a800;
    color: #172738;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.aida-event-card__title {
    margin: 0 0 13px;
    font-size: 22px;
    font-weight: 750;
    line-height: 1.35;
}

.aida-event-card__title a {
    color: #202a35;
    text-decoration: none;
}

.aida-event-card__title a:hover {
    color: #2f80bd;
}

.aida-event-card__date {
    margin-bottom: 14px;
    color: #2f80bd;
    font-size: 15px;
    font-weight: 700;
}

.aida-event-card__meta {
    margin: 3px 0;
    color: #4a5968;
    font-size: 14px;
    line-height: 1.6;
}

.aida-event-card__meta strong {
    color: #1f2c38;
}

.aida-event-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    width: 100%;
    margin-top: auto;
    padding-top: 22px;
}

.aida-event-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 46px;
    padding: 11px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
	width:100%;
    line-height: 1.25;
    text-align: center;
    text-decoration: none !important;
    overflow-wrap: anywhere;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.aida-event-card__button--outline {
    border: 1px solid #b7d1e4;
    background: #ffffff;
    color: #2f80bd !important;
}

.aida-event-card__button--outline:hover {
    border-color: #2f80bd;
    background: #f2f8fc;
}

.aida-event-card__button--primary {
    border: 1px solid #2f80bd;
    background: #2f80bd;
    color: #ffffff !important;
}

.aida-event-card__button--primary:hover {
    border-color: #236b9f;
    background: #236b9f;
    color: #ffffff !important;
}

.aida-events-empty {
    padding: 25px;
    border: 1px solid #dce7f1;
    border-radius: 14px;
    background: #ffffff;
    color: #4b5d6d;
}

.aida-single-event {
    padding: 64px 20px;
    background: #f5f9fc;
}

.aida-single-event__container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.aida-single-event__back {
    margin-bottom: 22px;
}

.aida-single-event__back a {
    color: #2f80bd;
    font-weight: 700;
    text-decoration: none;
}

.aida-single-event__grid {
    display: grid;
    grid-template-columns: minmax(300px, 42%) minmax(0, 1fr);
    gap: 52px;
    padding: 48px;
    border: 1px solid #dbe7f0;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(27, 68, 102, 0.1);
}

.aida-single-event__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding: 35px;
    border-radius: 18px;
    background: linear-gradient(
        145deg,
        #f8fbfe,
        #eaf4fb
    );
}

.aida-single-event__image {
    display: block;
    width: 100%;
    max-width: 440px;
    max-height: 380px;
    object-fit: contain;
}

.aida-single-event__content {
    align-self: center;
}

.aida-single-event__badge {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 15px;
    border-radius: 999px;
    background: #f5a800;
    color: #172738;
    font-size: 13px;
    font-weight: 700;
}

.aida-single-event__title {
    margin: 0 0 25px;
    color: #1f2933;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.15;
}

.aida-single-event__meta {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.aida-single-event__meta-item {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 15px;
    color: #4a5968;
}

.aida-single-event__meta-item strong {
    color: #1f2c38;
}

.aida-single-event__description {
    margin-bottom: 30px;
    color: #3f4f5e;
    font-size: 16px;
    line-height: 1.75;
}

.aida-single-event__description p:last-child {
    margin-bottom: 0;
}

.aida-single-event__website {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 25px;
    border-radius: 10px;
    background: #2f80bd;
    color: #ffffff !important;
    font-weight: 700;
    text-decoration: none !important;
}

.aida-single-event__website:hover {
    background: #236b9f;
    color: #ffffff !important;
}

@media (max-width: 850px) {
    .aida-single-event {
        padding: 40px 18px;
    }

    .aida-single-event__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 28px;
    }

    .aida-single-event__media {
        min-height: 280px;
    }
}

@media (max-width: 520px) {
    .aida-single-event__grid {
        padding: 22px 18px;
    }

    .aida-single-event__title {
        font-size: 30px;
    }

    .aida-single-event__meta-item {
        grid-template-columns: 1fr;
        gap: 2px;
    }
}

@media (max-width: 1100px) {
    .aida-events-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .aida-events-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .aida-event-card__media {
        min-height: 190px;
    }
}

@media (max-width: 420px) {
    .aida-event-card__actions {
        grid-template-columns: 1fr;
    }
}