/* Container Layout */
.synced-acc-11ea0986-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    align-items: stretch;
    box-sizing: border-box;
}

.synced-acc-11ea0986-list-col {
    flex: 1 1 450px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.synced-acc-11ea0986-media-col {
    flex: 1 1 450px;
    min-height: 500px;
    position: relative;
}

/* Accordion Item */
.synced-acc-11ea0986-item {
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.synced-acc-11ea0986-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fdfdfd;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 600;
}

.synced-acc-11ea0986-header:focus-visible {
    outline: 2px solid #0073aa;
    outline-offset: -2px;
}

.synced-acc-11ea0986-chevron {
    display: inline-flex;
    transition: transform 0.3s ease;
}

.synced-acc-11ea0986-item.is-active .synced-acc-11ea0986-chevron {
    transform: rotate(180deg);
}

.synced-acc-11ea0986-body {
    overflow: hidden;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.synced-acc-11ea0986-body-inner {
    padding: 20px;
    background: #fafafa;
}

/* Two-layer underline hover effect */
.synced-acc-11ea0986-cta-wrap {
    margin-top: 15px;
}

.synced-acc-11ea0986-cta {
    position: relative;
    text-decoration: none;
    font-weight: 600;
    color: inherit;
    display: inline-block;
    padding-bottom: 4px;
}

.synced-acc-11ea0986-cta::before,
.synced-acc-11ea0986-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    transition: transform 0.3s ease;
}

.synced-acc-11ea0986-cta::before {
    background-color: rgba(0, 0, 0, 0.15);
    transform: scaleX(1);
    transform-origin: left;
}

.synced-acc-11ea0986-cta::after {
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: right;
}

.synced-acc-11ea0986-cta:hover::before {
    transform: scaleX(0);
    transform-origin: right;
}

.synced-acc-11ea0986-cta:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Media Panel */
.synced-acc-11ea0986-media-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.synced-acc-11ea0986-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.synced-acc-11ea0986-bg-layer.is-active {
    opacity: 1;
    z-index: 2;
}

.synced-acc-11ea0986-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.synced-acc-11ea0986-media-content {
    position: relative;
    z-index: 4;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.synced-acc-11ea0986-text-layer {
    display: flex;
    flex-direction: column;
    gap: inherit;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: calc(100% - 80px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
    transform: translateY(15px);
}

.synced-acc-11ea0986-text-layer.is-active {
    opacity: 1;
    visibility: visible;
    position: relative;
    width: 100%;
    transform: translateY(0);
}

.synced-acc-11ea0986-layer-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.synced-acc-11ea0986-layer-h1 {
    font-size: 2.5rem;
    margin: 0;
    line-height: 1.1;
    font-weight: 800;
}

.synced-acc-11ea0986-layer-h2 {
    font-size: 1.5rem;
    font-weight: 500;
}

.synced-acc-11ea0986-layer-subheader {
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

/* Responsiveness */
@media (max-width: 768px) {
    .synced-acc-11ea0986-container {
        flex-direction: column-reverse;
    }
    .synced-acc-11ea0986-media-col {
        min-height: 350px;
    }
}
