/* === Rok === */
.akc-year-section {
    margin-bottom: 3rem;
}

.akc-year-label {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

/* === Accordion item === */
.akc-accordion .akc-item {
    background: transparent;
    border-radius: 19px;
    border: 1px solid #1E1D25;
    margin-bottom: .75rem;
    overflow: hidden;
}

/* === Nadpisanie Elementor button styles === */
.akc-accordion .akc-header,
.elementor .akc-accordion .akc-header,
.elementor-kit-6 .akc-accordion .akc-header,
.elementor-kit-6 button.akc-header {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 1.2rem 1.5rem !important;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    text-align: left !important;
    gap: 1rem !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    color: inherit !important;
    line-height: normal !important;
    box-shadow: none !important;
    transition: none !important;
}

.akc-accordion .akc-header:hover,
.elementor .akc-accordion .akc-header:hover {
    background: none !important;
    background-color: transparent !important;
    color: inherit !important;
}

/* === Tytuł === */
.akc-accordion .akc-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    border-bottom: 1px solid #e0e4ef;
    padding-bottom: .4rem;
    flex: 1;
}

/* === Data w headerze === */
.akc-accordion .akc-date {
    font-size: .85rem;
    color: #888;
    white-space: nowrap;
    flex-shrink: 0;
}

/* === Ikona +/- === */
.akc-accordion .akc-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    position: relative;
    background: none !important;
    display: block;
}

.akc-accordion .akc-icon::before,
.akc-accordion .akc-icon::after {
    content: '';
    position: absolute;
    background: #91A4B8;
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.akc-accordion .akc-icon::before {
    width: 100%;
    height: 4px;
}

.akc-accordion .akc-icon::after {
    width: 4px;
    height: 100%;
    transition: transform .3s;
}

.akc-accordion .akc-item--open .akc-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* === Body === */
.akc-accordion .akc-body {
    display: none;
    padding: 0 1.5rem 1.5rem;
}

.akc-accordion .akc-item--open .akc-body {
    display: block;
}

.akc-accordion .akc-content {
    font-size: 1rem;
    line-height: 1.6;
}

.akc-content a {
text-decoration: underline !important;
}

/* === Mobile === */
@media (max-width: 768px) {
    .akc-accordion .akc-icon {
        width: 20px;
        height: 20px;
    }

    .akc-accordion .akc-icon::before {
        height: 2px;
    }

    .akc-accordion .akc-icon::after {
        width: 2px;
    }
}