/* === ACCORDION WRAPPER === */
.gtc-accordion-wrapper {
    display: flex !important;
    flex-direction: column;
    margin: 2rem 0;
    padding: 0 5rem;
}


/* === ACCORDION ITEM === */
.gtc-accordion {
    margin: 0.5rem 0;
    width: 100%;
    border-radius: 1rem;
    box-shadow: -4px -4px 8px #ffffff, 4px 4px 8px #aeaec0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gtc-accordion.open {
    box-shadow: -4px -4px 8px #ffffff, 4px 4px 8px #aeaec0;
}

/* === ACCORDION HEADER === */
.gtc-accordion-summary {
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--template-fourthcolor);
    user-select: none;
}

.gtc-icon {
    font-size: 1.4rem;
    margin-left: 1rem;
    transition: transform 0.3s ease;
    font-weight: bold;
    color: var(--template-fourthcolor);
}

.gtc-accordion.open .gtc-icon {
    transform: rotate(180deg);
}

/* === ACCORDION CONTENT === */
.gtc-accordion-text {
    padding: 0 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--template-fourthcolor);
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: height 0.4s ease, opacity 0.3s ease;
}

.gtc-accordion.open .gtc-accordion-text {
    height: auto;
    opacity: 1;
    padding-bottom: 1rem;
}

@media (max-width: 468px) {
    .gtc-accordion-wrapper {
        padding: 0 1rem;
    }
}