/* Shared Grid Card Styles - Used by multiple shortcodes */

/* Grid Container */
.gig-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

/* Card Styles */
.gig-card {
    display: flex;
    width: 100%;
    height: 72px;
    padding: 10px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid var(--Gradient-1, #7136C4);
    background: var(--Dark-blue, #080E2D);
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.06s ease, opacity 0.06s ease;
}

.gig-card:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

/* Inner wrapper for icon and title alignment */
.gig-inner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* Title styles */
.gig-title {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    color: #ffffff;
}

/* Icon styles */
.gig-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

/* Category Header Styles */
.gig-category-title {
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    color: #080E2D;
    margin: 0 0 24px 0;
    font-family: "Hanken Grotesk", sans-serif;
}

/* Year Selector Styles */
.gig-year-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.gig-year-tab {
    display: flex;
    width: auto;
    min-width: 119px;
    height: 32px;
    padding: 6px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: var(--Light-Grey, #F6F6F9);
    color: #B2B3C8;
    border: none;
    cursor: pointer;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.gig-year-tab:hover {
    opacity: 0.85;
}

.gig-year-tab.active {
    background: var(--Mint, #57E5CA);
    color: #080E2D;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .gig-grid {
        grid-template-columns: 1fr;
    }
    
    .gig-category-title {
        font-size: 24px !important;
        line-height: 30px !important;
        margin-bottom: 16px;
    }
    
    .gig-year-tabs {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        margin-bottom: 24px;
        max-width: 100%;
    }
    
    .gig-year-tab {
        width: 100% !important;
        min-width: unset !important;
        padding: 6px 8px;
        font-size: 13px;
    }
}

/* Breakdance Compatibility */
.breakdance .gig-card {
    border: 1px solid var(--Gradient-1, #7136C4) !important;
    background: var(--Dark-blue, #080E2D) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.breakdance .gig-title {
    color: #ffffff !important;
    margin: 0 !important;
}

.breakdance .gig-icon {
    width: 18px !important;
    height: 18px !important;
}

.breakdance .gig-category-title {
    margin: 0 0 24px 0 !important;
    color: #080E2D !important;
}

.breakdance .gig-year-tab {
    margin: 0 !important;
    padding: 6px 16px !important;
}

.breakdance .gig-year-tab.active {
    background: var(--Mint, #57E5CA) !important;
    color: #080E2D !important;
}