* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#app {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#app>.container {
    flex: 1;
    display: flex;
    flex-direction: row;
    position: relative;
    min-height: calc(100vh - var(--header-height, 56px));
}

.scholar-container {
    flex-grow: 1;
    position: relative;
    --sidebar-statue: flex;
}

#sidebar.isShow+.scholar-container {
    --sidebar-statue: none;
}

.scholar-container__content {
    position: relative;
    min-height: calc(100vh - var(--header-height, 56px));
    padding: 64px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.scholar-container .toggle-sidebar-btn {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 0;
    border: none;
    background-color: transparent;
    outline: none;
    display: var(--sidebar-statue, flex);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.scholar-header {
    margin-top: 50px;
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scholar-header-title {
    font-size: 56px;
    color: #070d1b;
    line-height: 1.5;
}

.scholar-header-title span {
    padding: 2px 8px;
    border-radius: 8px;
    background-color: #009c4c;
    color: #fff;
}

.scholar-header-title .beta-icon {
    color: #009c4c;
    vertical-align: text-top;
}

.scholar-header-subtitle {
    margin: 20px auto;
    font-size: 18px;
    color: #333333;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
}

.scholar-header-subtitle span {
    color: #009c4c;
}

.search-container {
    position: relative;
    width: 90%;
    max-width: 840px;
    margin: 70px auto 40px;
    padding: 36px 20px;
    border-radius: 20px;
    box-shadow: rgba(0, 156, 76, 0.35) 0px 0px 28px;
}

.search-input {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto 32px;
}

.search-input-field {
    width: 100%;
    height: 48px;
    padding: 0 50px 0 18px;
    border: 1px solid #ccc;
    border-radius: 25px;
    outline: none;
    transition: border-color 0.2s ease-in-out;
    font-size: 16px;
}

.search-input-field:focus {
    border-color: #009c4c;
}

.search-input-button {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: #009c4c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-example-questions {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
}

.example-question {
    width: 100%;
    max-width: 300px;
    padding: 10px 20px;
    border: 1px solid #e6e6e6;
    border-radius: 999px;
    transition: background-color 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.example-question:hover {
    border-color: #e6e6e6;
    background-color: #e6e6e6;
}


.features-section {
    position: relative;
    padding: 20px 16px 60px;
}

.features-section header h2 {
    margin: 0;
    font-size: 34px;
    font-weight: 600;
    line-height: 45.9px;
    letter-spacing: -.8px;
    text-align: center;
}

.features-section header h2 span {
    color: #009c4c;
}

.features-section header .subtitle {
    margin: 12px 0 0;
    padding: 0 20px;
    font-size: 17px;
    color: #374356;
    text-align: center;
    font-weight: 400;
    line-height: 28px;
}

.features-grid {
    max-width: 920px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    border: 1px solid #ebeef9;
    border-radius: 16px;
    padding: 28px;
    box-sizing: border-box;
}

.feature-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
}

.feature-description {
    margin: 12px 0;
    font-size: 15px;
    color: #374356;
    font-weight: 500;
    line-height: 24px;
    text-align: left !important;
}

.feature-tag {
    display: block;
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
}

.feature-image:has(img)+.feature-tag {
    margin-top: 20px;
}

.feature-image img {
    width: 100%;
    aspect-ratio: 3/2;
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px #ffffff0d, 0 2px 4px 0 #0000001a, 0 12px 28px 0 #00000012;
}

.features-grid.column-1 {
    grid-template-columns: 1fr;
}

.features-grid.column-1 .feature-image img {
    aspect-ratio: 5/2;
}

.upload-slot .drop-box {
    max-width: 860px;
    margin: 140px auto;
    box-shadow: unset;
}

.upload-slot .drop-box .drop-inner {
    padding: 72px 20px;
}

.drop-container>.faq-container {
    max-width: 960px;
}

@media screen and (max-width: 768px) {
    .features-grid {
        max-width: 480px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 20px;
    }
}