#root {
    margin-top: 0;
}

/* Styles for external snippet section */
.wonder-company .ExtraSnippetSection {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 0 5%;
    margin-bottom: 48px;
    height: fit-content;
}
.wonder-company .ExtraSnippetSection .extra-section {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 calc(50% - 480px);
    line-height: 22px;
    position: relative;
}
.wonder-company .ExtraSnippetSection .extra-section::after {
    content: '';
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 280px;
    position: absolute;
    right: 0;
    top: 56px;
}
.wonder-company .ExtraSnippetSection .extra-section:first-child {
    padding-left: 0;
}
.wonder-company .ExtraSnippetSection .extra-section:last-child {
    padding-right: 0;
}
.wonder-company .ExtraSnippetSection .extra-section:last-child::after {
    display: none;
}

.wonder-company .ExtraSnippetSection .extra-section .snippet .extra-title h3 {
    width: 100%;
    height: 44px;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: flex-end;
    text-align: center;
    color: black;
}
.wonder-company .ExtraSnippetSection .extra-section .snippet .extra-title >* {
    width: 100%;
}
.wonder-company .ExtraSnippetSection .extra-section .snippet .external-snippet {
    width: 100%;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--tc-light-secondary-color);
    border-radius: 5px;
    margin: 12px 0;
    border: 1px solid rgb(205, 211, 248);
}
.wonder-company .ExtraSnippetSection .extra-section .snippet .extra-description {
    width: 100%;
    height: 30%;
    font-size: 14px;
}

.wonder-company .ExtraSnippetSection .extra-section .snippet .extra-description a {
    color: rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));
}

@media (max-width: 1200px) {
    .wonder-company .ExtraSnippetSection {
        flex-direction: column;
        gap: 24px;
    }
    .wonder-company .ExtraSnippetSection .extra-section {
        width: 100%;
        height: fit-content;
        padding: 0;
    }
    .wonder-company .ExtraSnippetSection .extra-section::after {
        display: none;
    }
    .wonder-company .ExtraSnippetSection .extra-section .snippet .external-snippet {
        height: 240px;
    }
}
