:root {
    --color-primary-50: #faf4fb;
    --color-primary-300: #cc93d4;
    --color-primary-400: #b35dbf;
    --color-primary-450: #a52ab5;
    --color-primary-500: #9927a9;
    --color-primary-600: #731d7f;
    --color-primary-650: #5f1869;
    --color-primary-700: #4d1455;
    --color-primary-800: #260a2a;
    --color-primary-900: #170619;

    --color-secondary-50: #f2f8fc;
    --color-secondary-300: #81bde4;
    --color-secondary-400: #429bd7;
    --color-secondary-500: #037ac9;
    --color-secondary-600: #025c97;
    --color-secondary-700: #023d65;
    --color-secondary-800: #011f32;
    --color-secondary-900: #00121e;
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

*:target {
    scroll-margin-top: 53px; /* navbar height */
}

@media (min-width: 768px) {
    *:target {
        scroll-margin-top: 67px; /* navbar height */
    }
}

body {
    font-family: "Open Sans", "Segoe UI", Tahoma, sans-serif;
    margin: 0;
}

[tabindex="-1"]:focus {
    outline: 0;
}

h1,
h2 {
    color: var(--color-primary-600);
}

a {
    color: var(--color-secondary-600);
}

.list-unstyled {
    list-style: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
}

.img-responsive {
    height: auto;
    max-width: 100%;
}

.btn {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    border: 0;
    border-radius: 4px;
}

.btn .bi {
    margin-right: 0.75em;
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    width: 100%;
    padding: 0.5rem;
    border: 0;
    border-radius: 4px;
}

.form-control:focus {
    outline: 0;
    box-shadow: 0.125em 0.125em 0.25em var(--color-primary-700);
}

.form-group .validation-error-label {
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.d-none {
    display: none;
}

.d-flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

.flex-grow-1 {
    flex-grow: 1;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: auto;
    margin-left: auto;
}

.min-vh-100 {
    min-height: 100vh;
}

.px-0 {
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 768px) {
    .container-md {
        max-width: 640px;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 992px) {
    .container-lg {
        max-width: 840px;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 1280px) {
    .container-xl {
        max-width: 1250px; /* = 1280px (min-width) - 2 * 15px (padding) */
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 1440px) {
    .container-xxl {
        max-width: 1410px; /* = 1440px (min-width) - 2 * 15px (padding) */
        padding-left: 0;
        padding-right: 0;
    }
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.row > [class*="col-"] {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.row.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

@media (min-width: 576px) {
    .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 768px) {
    .offset-md-4 {
        margin-left: 33.333333%;
    }

    .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-lg-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-lg-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
}

@media (min-width: 1280px) {
    .col-xl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: #fff;
    transition: box-shadow 0.2s;
}

@media (max-width: 767px) {
    .navbar {
        overflow: hidden;
    }
}

.scrolled-down .navbar,
.textpage .navbar,
.blog .navbar,
.blogpost .navbar {
    box-shadow: 0 1px 5px var(--color-primary-300);
}

.navbar .container {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    max-width: 130px;
    margin-left: 15px;
    margin-right: auto;
}

@media (min-width: 768px) {
    .navbar .container {
        flex-direction: row;
        padding-left: 15px;
        padding-right: 15px;
    }

    .navbar-brand {
        max-width: 150px;
        margin-left: 0;
        margin-right: 1.5rem;
    }
}

@media (min-width: 1280px) {
    .navbar .container {
        padding-left: 0;
        padding-right: 0;
    }

    .navbar-brand {
        max-width: 170px;
        margin-right: 3rem;
    }
}

.navbar-nav-switch {
    display: none;
}

.navbar-toggler {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--color-primary-500);
    border: 1px solid var(--color-primary-300);
    border-radius: 3px;
    padding: 0.5rem;
    margin: 0.5rem 15px;
}

@media (min-width: 768px) {
    .navbar-toggler {
        display: none;
    }
}

@media (max-width: 991px) {
    .navbar-nav {
        width: 100%;
        max-height: 0;
        transition: max-height 200ms linear;
    }
}

@media (min-width: 768px) {
    .navbar-nav {
        display: flex;
        max-height: none;
        flex-grow: 1;
        justify-content: space-between;
    }
}

.navbar-nav-switch:checked ~ .navbar-nav {
    max-height: 100vh;
    flex-grow: 1;
    flex-basis: 100%;
}

.navbar-nav-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    border-bottom: 1px solid var(--color-primary-300);
}

.navbar-nav-list > li {
    border-top: 1px solid var(--color-primary-50);
}

.navbar-nav-list > li > a, .navbar-nav-list > li .nav-item__title {
    display: block;
    font-size: 0.9rem;
    color: var(--color-primary-500);
    text-decoration: none;
    padding: 0.75rem 1rem;
}

.navbar-nav-list > .login-link > a {
    color: var(--color-secondary-500);
}

@media (min-width: 768px) {
    .navbar-nav-list {
        border-bottom: 0;
    }

    .navbar-nav-list > li {
        display: inline-block;
        border-top: 0;
    }

    .navbar-nav-list > li > a, .navbar-nav-list > li .nav-item__title {
        display: inline-block;
        text-transform: uppercase;
        padding: 1.25rem 0.5rem;
        border-style: solid;
        border-width: 0.25rem 0;
        border-color: transparent;
    }

    .navbar-nav-list > li > a:focus,
    .navbar-nav-list > li > a:hover,
    .navbar-nav-list > li .nav-item__title:hover,
    .navbar-nav-list > li .nav-item__title:focus {
        border-top-color: inherit;
    }

    .navbar-nav-list > .login-link {
        display: inline-block;
    }
}

@media (min-width: 1440px) {
    .navbar-nav-list > li > a, .navbar-nav-list > li .nav-item__title-link {
        padding: 1.25rem 1rem;
    }
}

.section--padded {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.section-title {
    color: var(--color-primary-700);
    font-weight: 600;
    font-size: 1.3rem;
    margin-top: 0;
}

.section--dark {
    background-color: var(--color-primary-500);
    color: #fff;
}

.section--dark a,
.section--dark .section-title {
    color: #fff;
}

.section--darker {
    background-color: var(--color-primary-650);
    color: #fff;
}

.section--darker a,
.section--darker .section-title {
    color: #fff;
}

.hero-image {
    padding-bottom: 50%;
    background-color: #fff;
}

.hero-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

@media (min-width: 992px) {
    .hero-image {
        padding-bottom: 0;
    }
}

.hero-content {
    background-color: var(--color-primary-500);
    padding: 1rem 15px;
}

@media (min-width: 576px) {
    .hero-content {
        padding: 3rem;
    }
}

@media (min-width: 992px) {
    .hero-content {
        padding: 3rem 2rem;
    }
}

@media (min-width: 1280px) {
    .hero-content {
        padding: 3rem 3rem;
    }
}

@media (min-width: 1440px) {
    .hero-content {
        padding: 3rem 6rem;
    }
}

.hero-content > *:first-child {
    margin-top: 0;
}

.hero-content > p {
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
}

.hero-content > p:first-of-type {
    font-size: 1.6rem;
    font-weight: bold;
}

.hero-content > p:last-of-type {
    margin-bottom: 1.8rem;
}

.hero-button {
    display: block;
    color: var(--color-secondary-500);
    text-decoration: none;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #fff;
}

.hero-button:focus,
.hero-button:hover {
    box-shadow: 0.125em 0.125em 0.25em var(--color-primary-700);
}

@media (min-width: 576px) {
    .hero-button {
        margin-bottom: 0;
    }
}

.intro-text {
    line-height: 1.7;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .intro-text {
        text-align: center;
    }
}

.hero--over {
    position: relative;
}

.hero-over-content {
    color: #fff;
    opacity: 0.8;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    min-width: 30rem;
    width: 50%;
    text-align: center;
    text-transform: uppercase;
    background-color: var(--color-primary-500);
    font-size: 0.9rem;
    padding: 0.9rem;
    text-shadow: 0px 6px 5px black;
}

.hero--over .hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero--over img {
    object-position: 100% 35%;
}


@media (min-width: 576px) {
    .hero--over .hero-over-content {
        font-size: 1.5em;
        padding: 1.5rem;
    }
}

@media (min-width: 992px) {
    .hero--over .hero-image {
        height: 35rem;
    }
    .hero--over .hero-over-content {
        font-size: 2.6em;
        padding: 2rem;
    }
}

.subpage #join-populon {
    color: var(--color-primary-700);
    background-color: #EFE9F0;
}

blockquote {
    border-left: 2px solid lightgray;
    padding-left: 1em;
    margin-left: 0;
}

.subpage #join-populon a,
.subpage #join-populon .section-title {
    color: var(--color-primary-700);
}

.subpage #join-populon input {
    border: 1px solid var(--color-primary-700);
}

.subpage #join-populon input[type=submit] {
    background-color: var(--color-primary-450);
    color: #fff;
    border: 0;
}

.subpage .intro-features {
    background-color: #F0EAF1;
}

.subpage .intro-features .intro-feature-text {
    font-weight: bold;
}

@media (max-width: 575px) {
    .hero-over-content {
        font-size: 1.6em;
        min-width: initial;
        width: 100%;
    }
}

.usecase--quote {
    margin-top: 1rem;
    background-color: #eee6ef;
}

.usecase--quote .usecase-content {
    background-color: #EEE6EF;
}

.quote-content {
    font-style: italic;
    text-align: center;
    line-height: 2.5;
    color: #696869;
    background-color: #f7f3f6;
    padding: 1.5rem 3rem;
}

@media (min-width: 768px) {
    .quote-content {
        padding: 1.5rem 6rem;
    }
}

@media (min-width: 992px) {
    .usecase--quote {
        background: linear-gradient(90deg, #eee6ef 66.666667%, #f7f3f6 66.666667%);
    }

    .usecase--quote .usecase-content {
        margin-top: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .quote-content {
        display: flex;
        align-items: center;
        padding: 2.5rem 20%;
        border-left: 0.5rem #fff solid;
        background-image: url("/static/images/populon-merkki-rgb.svg");
        background-repeat: no-repeat;
        background-size: 10rem;
        background-position: 80% 90%;
    }
}

@media (min-width: 1280px) {
    .quote-content {
        padding-left: calc(20% + 15px); /* 15px is the right margin of the centered container */
        background-position: right 90%;
    }
}

@media (min-width: 1440px) {
    .quote-content {
        padding-left: calc(15% + 80px); /* 80px is the right margin of the centered container */
        padding-right: 15%;
    }
}

.read-more .row {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
}

.read-more .row > [class*="col-"] {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.read-more-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    margin-bottom: 0.5rem;
    background-color: #E6DBE8;
}

.read-more-item-title {
    color: var(--color-primary-650);
    margin: 1.5rem 2rem;
}

.read-more-item-image {
    height: auto;
    min-height: 14rem;
    width: 100%;
    object-fit: cover;
}

@media (min-width: 576px) {
    .read-more {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width: 768px) {
    .read-more-item {
        margin-bottom: 0;
    }
}

.intro-features {
    padding-top: 1rem;
    background-color: #f5f1f5;
    font-weight: bold;
}

.intro-feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 1rem;
}

.intro-feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    flex-grow: 0;
    height: 50px;
    width: 50px;
    border-radius: 25px;
    background-color: var(--color-primary-700);
    transition-duration: 0.8s;
    transition-property: transform;
}

.intro-feature:hover .intro-feature-icon {
    transform: rotate(360deg);
}

.intro-feature-icon [class^="icon-"] {
    font-size: 1.5rem;
    color: #fff;
}

.intro-feature-icon .icon-megaphone,
.intro-feature-icon .icon-mobile {
    transform: rotate(-35deg);
}

.intro-feature-icon .icon-coin-euro {
    margin-left: 2px;
}

.intro-feature-text {
    font-size: 0.9rem;
    color: var(--color-primary-700);
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 1280px) {
    .intro-feature-text {
        padding-right: 2rem;
    }
}

.intro-button {
    display: inline-flex;
    color: #fff;
    text-decoration: none;
    background-color: var(--color-primary-500);
}

.intro-button:focus,
.intro-button:hover {
    box-shadow: 0.125em 0.125em 0.25em var(--color-primary-300);
}

.usecase:nth-of-type(even) {
    background-color: #eee6ef;
}

.usecase:nth-of-type(odd) {
    background-color: #f5f1f5;
}

@media (min-width: 992px) {
    .usecase {
        padding: 2rem;
    }

    .usecase:not(:last-child) {
        margin-bottom: 1rem;
    }
}

@media (min-width: 1440px) {
    .usecase {
        padding: 4rem 0;
    }
}

.usecase-image {
    padding-bottom: 50%;
}

.usecase-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.usecase:nth-of-type(1) .usecase-image img {
    object-position: center center;
}

.usecase:nth-of-type(2) .usecase-image img {
    object-position: 75% center;
}

.usecase:nth-of-type(3) .usecase-image img {
    object-position: center top;
}

@media (min-width: 992px) {
    .usecase-image {
        padding-bottom: 33.33333%;
    }
}

@media (min-width: 1280px) {
    .usecase-image {
        padding-bottom: 0;
    }
}

.usecase-content {
    padding: 1rem;
    border-top: 0.25rem solid #e0d4e2;
}

@media (min-width: 576px) {
    .usecase-content {
        padding: 3rem;
    }
}

@media (min-width: 992px) {
    .usecase-content {
        position: relative;
        padding: 2rem 2rem 0 2rem;
        border-top: 0;
    }

    .usecase-content::after {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 70%;
        height: 70%;
        content: "";
        border-color: #e0d4e2;
        border-style: solid;
        border-width: 0.5rem 0 0 0.5rem;
        pointer-events: none;
    }
}

@media (min-width: 1440px) {
    .usecase-content {
        padding: 4rem 4rem 0 4rem;
    }
}

.usecase-content h1,
.usecase-content h2,
.usecase-content h3 {
    margin-top: 2em;
    margin-bottom: 0;
    font-weight: 400;
    color: var(--color-primary-700);
}

.usecase-content h1{
    font-size: 1.5rem;
}

.usecase-content h2{
    font-size: 1.3rem;
}

.usecase-content h3{
    font-size: 1.1rem;
}


.usecase-content h1:first-child,
.usecase-content h2:first-child,
.usecase-content h3:first-child {
    margin-top: 0;
}

.usecase-content p {
    line-height: 1.7;
}

.usecase-content p:last-child {
    margin-bottom: 0;
}

.get-started-list {
    list-style: none;
    margin-top: 2rem;
    padding-left: 0;
}

.get-started-item {
    text-align: center;
}

.get-started-item:not(:last-child) {
    margin-bottom: 3rem;
}

.get-started-item:not(:last-child)::after {
    display: block;
    content: "";
    width: 30px;
    height: 30px;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    border-color: #ddbee7;
    border-style: solid;
    border-width: 0 0.5rem 0.5rem 0;
    transform: rotate(45deg);
    pointer-events: none;
}

@media (min-width: 768px) {
    .get-started-item:not(:last-child) {
        margin-bottom: 0;
    }

    .get-started-item:not(:last-child)::after {
        position: absolute;
        bottom: 3px;
        right: 0;
        margin-top: 0;
        border-width: 0.5rem 0.5rem 0 0;
    }
}

.get-started-item-icon {
    display: inline-block;
    width: 25%;
    height: auto;
    margin-bottom: 1rem;
}

.get-started-item-icon[src$="populon-add-group-icon.png"] {
    transform: scaleX(-1);
}

@media (min-width: 768px) {
    .get-started-item-icon {
        width: 60%;
    }
}

.get-started-item-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary-700);
    text-transform: uppercase;
}

.get-started-item-label br {
    display: none;
}

@media (min-width: 768px) {
    .get-started-item-label br {
        display: initial;
    }
}

.get-started-button {
    color: var(--color-secondary-500);
    text-decoration: none;
    margin-bottom: 1rem;
    background-color: #fff;
    cursor: pointer;
}

.get-started-button:focus,
.get-started-button:hover {
    box-shadow: 0.125em 0.125em 0.25em var(--color-primary-700);
}

.footer {
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.7;
    padding: 1rem;
    background-color: var(--color-primary-700);
}

@media (min-width: 576px) {
    .footer {
        padding: 2rem 3rem;
    }
}

@media (min-width: 1280px) {
    .footer {
        padding-bottom: 4rem;
    }
}

.footer-title {
    font-size: 1rem;
    font-weight: normal;
    color: inherit;
    text-transform: uppercase;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 576px) {
    .footer-title {
        margin-top: 0;
        margin-bottom: 0;
    }
}

.footer a {
    color: inherit;
}

.footer .fake-link {
    all: inherit;
    display: inline;
    padding: 0;
    text-decoration: underline;
    cursor: pointer;
}

.footer img {
    max-width: 100%;
    height: auto;
}

.footer-brand {
    display: block;
    max-width: 25%;
    margin: 2rem auto 0 auto;
}

@media (min-width: 992px) {
    .footer-brand {
        max-width: 100%;
        margin: 0 0 2rem 0;
    }
}

@media (min-width: 1280px) {
    .footer-brand {
        width: 66.66666%;
        margin-left: auto;
        margin-right: auto;
    }
}

.share-badges {
    margin-top: 2rem;
}

.share-badges > button:not(:last-child),
.share-badges > a:not(:last-child) {
    margin-bottom: 5px;
}

@media (min-width: 480px) {
    .share-badges {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .share-badges > button:not(:last-child),
    .share-badges > a:not(:last-child) {
        margin-right: 5px;
        margin-bottom: 0;
    }
}

.share-button {
    all: unset;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 38px;
    color: #fff;
    background: #000;
    margin-right: 5px;
    padding: 0 10px;
    border: 1px solid #a6a6a6;
    border-radius: 5px;
    user-select: none;
    cursor: pointer;
}

.share-button-label {
    margin-left: 10px;
}

@media (min-width: 480px) {
    .share-button {
        display: inline-flex;
    }
}

.app-store-button {
    display: block;
    font-size: 0;
}

@media (min-width: 480px) {
    .app-store-button {
        display: inline-block;
    }
}

.cookie-consent-banner {
    position: fixed;
    z-index: 1;
    width: 100%;
    bottom: 0;
    padding: 1rem;
    background-color: #f6f6f6;
    border-top: 1px solid #e6e6e6;
}

.cookie-consent-button {
    display: block;
    float: right;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin-left: 1rem;
    padding: 0.75rem 1rem;
    border: 0;
    border-radius: 0.25rem;
    background-color: var(--color-primary-500);
}

.cookie-consent-button:focus,
.cookie-consent-button:hover {
    box-shadow: 0.125em 0.125em 0.125em var(--color-primary-300);
}

.textpage main h1,
.textpage main h2,
.textpage main h3,
.textpage main h4,
.textpage main h5,
.textpage main h6 {
    color: var(--color-primary-600);
}

.blog main .blogpost:not(:last-child) {
    border-bottom: 1px solid var(--color-secondary-50);
}

.blogpost main .container {
    padding-top: 2.5rem;
    padding-bottom: 5rem;
}

.blogpost main h1,
.blogpost main h2,
.blogpost main h3,
.blogpost main h4,
.blogpost main h5,
.blogpost main h6 {
    color: var(--color-primary-600);
}

.blogpost-meta {
    color: gray;
    margin-bottom: 0.5em;
}

.blogpost-title {
    margin-top: 0;
}

.blogpost-title > a {
    text-decoration: none;
}

.blogpost-image {
    display: block;
    margin: 1em auto;
}

.blogpost-text {
    font-size: 1.2em;
    line-height: 1.6;
}

.blogpost-text :is(ol ul) {
    margin-block: 1em;
}

.blogpost-text ol > li::marker {
    font-weight: bold;
}

.blogpost-text ul {
    list-style-type: square;
}

.blogpost-card {
    position: relative;
    align-items: center;
    clear: both;
    min-height: 10em;
    margin-bottom: 1em;
}

.blogpost-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.blogpost-card-image {
    float: left;
    width: 10em;
    height: 10em;
    object-fit: cover;
    margin-right: 1em;
}

.nav-item {
    position: relative;
}

.nav-item__title {
    cursor: pointer;
    min-width: 7rem;
    text-align: center;
}

.nav-item__title:focus {
    outline: none;
}

.nav-item__title::after {
    content: "\25BC";
    margin-left: 0.25rem;
    font-size: 8px;
    line-height: 1;
    vertical-align: 2px;
}

.nav-item[open] > .nav-item__title::after {
    content: "\25B2";
}

.nav-item > .nav-item__title {
    list-style: none;
}
.nav-item > .nav-item__title::-webkit-details-marker {
    display: none;
}

.nav-item__link-list {
    position: absolute;
    background-color: rgba(204, 147, 212, 0.92);
    list-style: none;
    padding: initial;
    text-align: center;
}

.nav-item__link a {
    display: block;
    color: var(--color-primary-700);
    text-decoration: none;
    text-transform: uppercase;
    padding: 1rem 0.5rem;
    white-space: nowrap;
}

.nav-item__link a:hover {
    color: #fff;
}

@media (max-width: 767px) {
    .nav-item__title {
        border-left: 0.25rem solid transparent;
        text-align: left;
    }

    .nav-item[open] > .nav-item__title {
        border-left-color: var(--color-primary-500);
        border-bottom: 1px solid var(--color-primary-500);
    }

    .nav-item__link-list {
        position: relative;
        top: initial;
        background-color: #fff;
        padding: initial;
        padding-left: 1rem;
        text-align: left;
    }

    .nav-item[open] > .nav-item__link-list {
        border-left: 0.25rem solid var(--color-primary-500);
    }

    .nav-item__link a,
    .nav-item__link a:hover {
        color: var(--color-primary-500);
        text-transform: initial;
        font-size: 0.9rem;
    }
}
