.awm-b24366e4-wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
    max-width: 1223px;
    margin: 0 auto;
    padding: 0 48px;
    font-family: 'Inter Tight', Arial, sans-serif;
}
.awm-b24366e4-media {
    grid-column: 1 / 8;
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    background: #f0f0f0;
}
.awm-b24366e4-media-right .awm-b24366e4-media {
    grid-column: 6 / 13;
    grid-row: 1;
}
.awm-b24366e4-media img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 300ms ease;
}
.awm-b24366e4-media img.active {
    opacity: 1;
}
.awm-b24366e4-accordion {
    grid-column: 8 / 13;
    display: flex;
    flex-direction: column;
}
.awm-b24366e4-media-right .awm-b24366e4-accordion {
    grid-column: 1 / 6;
    grid-row: 1;
}

/* Base item styling */
.awm-b24366e4-item {
    margin: 0; 
    border-radius: 8px;
    overflow: hidden; 
}

/* Add margin bottom directly to the active item to separate it from the next tab */
.awm-b24366e4-item.is-active {
    margin-bottom: 10px;
}


.awm-b24366e4-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    padding: 24px 20px; 
    cursor: pointer;
    color: #2a222b;
    text-align: left;
    transition: background-color 300ms ease;
}

.awm-b24366e4-trigger h3 {
    margin: 0;
    font-weight: 500;
    font-size: 24px;
    color: inherit;
    transition: color 300ms ease;
    text-align: left;
}
.awm-b24366e4-chevron {
    transition: transform 350ms ease;
}
.awm-b24366e4-trigger[aria-expanded="true"] .awm-b24366e4-chevron {
    transform: rotate(180deg);
}

.awm-b24366e4-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 350ms ease;
    visibility: hidden;
    text-align: left;
}
.awm-b24366e4-content:not([hidden]) {
    max-height: 240px;
    visibility: visible;
    padding: 0 20px 24px 20px; 
}
.awm-b24366e4-content p {
    font-size: 16px;
    color: #50565f;
    margin: 0 0 16px 0;
    text-align: left;
}
.awm-b24366e4-link {
    color: #2a222b;
    text-decoration: none;
    position: relative;
    display: inline-block;
    font-weight: 500;
}
.awm-b24366e4-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 50%;
    height: 1px;
    background: #50565f;
    transition: width 300ms ease, background 300ms ease;
}
.awm-b24366e4-link:hover::after {
    width: 100%;
    background: #2a222b;
}

@media (max-width: 991px) {
    .awm-b24366e4-wrapper {
        display: flex;
        flex-direction: column;
        padding: 0 24px;
    }
}