html {
    scroll-behavior: smooth;
}

#page {
    background-color: #EFEFEF;
}

section.hero {
    min-height: 175px;
    color: #fff;
    background-image: url("/wp-content/themes/thechartwatcher/assets/img/Hero-Background.png");
    display: flex;
    align-items: center;
    justify-content: center;
}

main.container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    margin-top: 47px;
}

.left.sidebar {
    background-color: #0B3B59;
    color: #fff;
    height: fit-content;
    border-radius: 7px;
    padding: 30px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.left.sidebar .links {
    display: flex;
    flex-direction: column;
    font-size: 16px;
}

.left.sidebar .links a {
    color: #fff;
    text-decoration: underline;
    font-style: italic;
}

.left.sidebar .links .disc {
    margin-bottom: 40px;
}

.left.sidebar .idea-info {
    margin-bottom: 0;
}

.left.sidebar .jump {
    font-size: 18px;
    text-decoration: underline;
}

.left.sidebar .idea-toc {
    margin: 0;
    padding: 0;
    list-style: none;
}

.left.sidebar .idea-toc .idea {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 27px;
}

.left.sidebar .idea-toc .idea a {
    color: #fff;
    margin-left: 10px;
}

.main-content {
    margin-left: 53px;
}

.main-content .idea-container {
    background-color: #fff;
    padding-bottom: 35px;
    border-radius: 0px 0px 8px 8px;
    margin-bottom: 35px;
}

.main-content .idea-container > div {
    padding: 0 35px;
}

.main-content .idea-header {
    background-color: #146A8C;
    border-radius: 8px 8px 0px 0px;
    margin-bottom: 35px;
}

.main-content .idea-header h2 {
    color: #fff;
    font-size: 32px;
    text-align: left;
    padding: 10px 0;
    margin: 0;
}

.main-content .idea-container .strategy {
    font-size: 28px;
}

.main-content .idea-container .data {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
}

.main-content .idea-container .data p {
    margin: 0;
}

.main-content .idea-container .thesis img {
    border: solid 1px grey;
}

.main-content .idea-container .managment,
.main-content .idea-container .thesis,
.main-content .idea-container .thesis img {
    margin-top: 35px;
}

.main-content .idea-container .managment p,
.main-content .idea-container .thesis p {
    margin-bottom: 0;
}

.left.sidebar .idea-toc .idea a:hover {
    text-decoration: underline;
}

.modified {
    text-align: center;
}

@media screen and (max-width: 899px) {
    section.hero {
        min-height: 135px;
    }

    section.hero h1{
        margin-top: 0;
        margin-bottom: 0;
        padding-left: 12px;
        padding-right: 12px;
    }
    .left.sidebar {
        margin-bottom: 35px;
        position: relative;
    }
    main.container {
        grid-template-columns: 1fr;
    }
    .main-content {
        margin-left: 0;
    }
    .main-content .idea-container .data {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .main-content .idea-header h2 {
        font-size: 30px;
    }
    .main-content .idea-container .strategy {
        font-size: 25px;
    }
}