/*----------------------------------
TABS
----------------------------------*/
.sky-tabs {
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 20px;
    border: none;
    background: #eee;
    cursor: pointer;
    margin-right: 5px;
    transition: 0.3s;
    border-radius: 5px;
}

/* Active tab */
.tab-btn.active {
    background: #4cb8f3;
    color: #fff;
}

/*----------------------------------
GRID
----------------------------------*/
.sky-event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/*----------------------------------
CARD
----------------------------------*/
.event-card {
    border: 1px solid #eee;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
}

/* Hover effect */
.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/*----------------------------------
IMAGE
----------------------------------*/
.event-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/*----------------------------------
DATE
----------------------------------*/
.event-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
    margin: 10px 0;
}

/*----------------------------------
DESCRIPTION
----------------------------------*/
.event-description p {
    margin-bottom: 10px;
}

.event-description ul {
    padding-left: 20px;
}

/*----------------------------------
BUTTON
----------------------------------*/
.event-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.event-btn:hover {
    background: #333;
}
a.event-btn {
    background: #4CB8F3;
    text-decoration: none!important;
    font-weight: 500;
}
a.event-btn:hover {
    background: #4CB8F3;
    text-decoration: none!important;
    font-weight: 500;
}