.banner {
    background-image: url(../img/blog//banner-image.png);
    background-repeat: no-repeat;
    background-position: center;
    height: 40vw;
    max-height: 690px;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-text {
    padding: 1em 3em;
    margin-top: 3em;
    font-family: Philosopher;
    color: white;
    font-size: 300%;
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    text-align: center;
}
ul.breadcrumb {
    position: absolute;
    top: 90%;
    left: 60%;
    padding: 10px 16px;
    list-style: none;
}
ul.breadcrumb li {
    display: inline;
    color: white;
    font-size: 18px;
}
ul.breadcrumb li + li:before {
    padding: 8px;
    color: white;
    content: "/\00a0";
}
ul.breadcrumb li a {
    color: white;
    text-decoration: none;
    cursor: pointer;
}
blockquote p {
    box-sizing: border-box;
    border-radius: 5px;
    background-color: #eeeeee;
    overflow: hidden;
    position: relative;
    border-left: 1.2em solid #85ca51;
    padding: 2em;
    padding-left: 100px;
    background-image: url("../img/blog-detail/double-quotes\ 1.svg");
    background-repeat: no-repeat;
    background-position: left;
}
.content {
    margin: 0 auto;
    width: 45%;
    padding: 2em;
    font-family: "Open Sans", sans-serif;
    font-size: 1.1em;
    line-height: 1.5em;
    min-width: 700px;
}

p.intro::before {
    content: "A";
    position: absolute;
    font-size: 12.5em;
    font-weight: 700;
    opacity: 0.1;
    transform: translate(-50%, 200%);
}

.content p {
    margin-bottom: 2em;
    position: relative;
}

.content > h3,
.content > h4 {
    margin: 1rem 0;
}

.text-card {
    box-sizing: border-box;
    border-radius: 5px;
    background-color: #eeeeee;
    overflow: hidden;
    position: relative;
    border-left: 1.2em solid #85ca51;
}

.text-card > img {
    float: left;
    padding: 1em;
    margin: 0 0.5em;
}

.text-card > .text {
    padding: 2em;
}

.text.stand-alone {
    font-weight: bold;
    margin-left: 1em;
}

.content h4.bullet {
    margin: 0;
}
.content h4.bullet::before {
    content: "•";
    margin: 0 0.5em;
}

.author-details {
    margin: 1em 2em;
    padding: 1em;
    display: flex;
}

.profile {
    flex: 1;
}

.profile > img {
    margin: auto;
    padding: 1em;
    display: block;
}

.profile > .details {
    text-align: center;
    font-size: initial;
}

.social-media {
    padding: 2em;
    flex: 2;
    display: flex;
}

.social-media > img {
    margin: auto;
    cursor: pointer;
}

.reader-comment {
    font-size: initial;
    margin: auto 2em;
}

.reader-comment p {
    margin: initial;
}

.author {
    margin-bottom: 1em;
}

.author > img {
    vertical-align: middle;
    margin-right: 1em;
}

.reader-comment > section {
    padding: 1em;
    border: 1px solid #333333;
    box-sizing: border-box;
    border-radius: 5px;
}

.reader-comment > .header {
    font-family: Philosopher;
    font-size: 1.5em;
    margin-bottom: 1rem;
}

.comment-form {
    margin: auto 2em;
    display: none;
}

.comment-form > .header {
    font-family: Philosopher;
    font-size: 1.3em;
}

.comment-form > form {
    display: flex;
    flex-wrap: wrap;
}

.comment-form > form > * {
    flex: 1;
    flex-basis: 100%;
    margin-bottom: 1.5em;
    padding: 0.5em 1em;
    background-color: #e4e4e4;
    border-radius: 5px;
    border: 1px solid rgb(158, 158, 158);
    font-family: "Open Sans";
}

.comment-form > form > *:focus-visible {
    border: 1px solid rgb(78, 78, 78);
    outline: none;
}

.comment-form > form > input:first-of-type {
    margin-right: 2em;
}

.comment-form > form > input#first-name,
.comment-form > form > input#last-name {
    flex-basis: 40%;
}

.comment-form > form > textarea {
    resize: none;
}

.comment-form > form > button {
    flex: 0;
    background-color: var(--green);
    padding: 1.5em 1em;
}

#check {
    display: none;
}

.checkbtn {
    font-size: 30px;
    color: var(--green);
    float: right;
    line-height: 64px;
    margin-right: 40px;
}

@media (max-width: 726px) {
    nav {
        display: block;
    }

    nav ul {
        position: fixed;
        width: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        height: 312px;
        left: -100%;
        transition: all 0.5s;
    }

    nav ul li {
        display: block;
        margin: 20px 20px;
        line-height: 20px;
    }
    nav ul li a {
        font-size: 20px;
    }
    a:active {
        background: none;
        color: #0f2231;
    }
    #check:checked ~ ul {
        left: 0;
    }
}

@media (max-width: 726px) {
    .content {
        width: 100%;
        padding: 20px;
        min-width: 0px;
    }
    .container {
        margin: 0px;
    }
    .banner {
        height: 124vw;
    }
}
@media (min-width: 800px) and (max-width: 1440px) {
    .content {
        width: 75%;
    }
}
