:root {
    --standard-corner-radius: 12px;
    --prominent-corner-radius: 16px;
    --primary-color: hsla(330, 74%, 50%, 1);
    --background-color: hsla(222, 60%, 4%, 1);
    --secondary-background-color: hsla(222, 20%, 25%, 1);
    --transparent-background-color: hsla(222, 20%, 25%, 0.7);
    --tertiary-background-color: hsla(222, 24%, 14%, 1);
    --quternary-background-color: hsla(222, 24%, 10%, 1);
    --success-accent: hsla(112, 74%, 33%, 1);
    --success-accent-darker: hsla(112, 74%, 9%, 1);
    --success-accent-lighter: hsla(112, 74%, 37%, 1);
    --error-accent: hsla(360, 68%, 34%, 1);
    --error-accent-darker: hsla(360, 68%, 11%, 1);
    --label-color: hsla(222, 87%, 72%, 1);
    --label-color-hover: hsla(222, 87%, 72%, 0.3);
    --contact-background: hsla(222, 58%, 24%, 1);
    --prominent-border: 1px solid var(--label-color);
    --app-icon-border-radius: 25%/23%;
    --standard-drop-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    --faint-text-color: hsla(222, 20%, 40%, 1);
    --secondary-text-color: hsla(222, 11%, 80%, 1);
    --accent-gradient: linear-gradient(45deg, var(--primary-color), hsla(330, 94%, 55%, 1));
    --form-input-background: hsla(222, 20%, 30%, 1);
    --focused-form-input-background: hsla(222, 20%, 35%, 1);
    --text-color: hsla(222, 24%, 94%, 1);
    --faint-border: hsla(222, 87%, 72%, 0.2);
    --faint-primary-border: hsla(330, 74%, 50%, 0.2);
    --white: hsla(222, 24%, 94%, 1);
    --black: hsla(222, 60%, 6%, 1);
    --blue-header-color: hsla(222, 100%, 87%, 1);
    --red-header-color: hsla(330, 100%, 92%, 1);
    --footer-color:  hsla(222, 24%, 10%, 1);
}

html {
    color: var(--text-color);
    background-color: var(--background-color);
    font-size: 1em;
    line-height: 1.4;
    font-family: -apple-system, Segoe UI, "Helvetica Neue", sans-serif;
    font-weight: 350;
    height: 100%;
    overflow-y: scroll;
}

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

body {
    margin: 0;
    height: 100%;
}

::-moz-selection {
    background: var(--primary-color);
    text-shadow: none;
    color: white;
}

::selection {
    background: var(--primary-color);
    text-shadow: none;
    color: white;
    opacity: 1;
}

strong, b {
    font-weight: bold;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 10px;
    margin-bottom: 5px;
}

h1, h2, h3, h4 {
    letter-spacing: 0.04rem;
}

h1 {
    font-size: 1.8rem;
    line-height: 1.1;
}

h2 {
    font-size: 1.6rem;
    line-height: 1.1;
}

h3 {
    font-size: 1.4rem;
    line-height: 1.2;
}

h4 {
    font-size: 1.2rem;
    font-weight: 450;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

h5, h6 {
    font-weight: 350;
}

/*blockquote {
    margin: 0;
    font-style: italic;
    position: relative;
    display: inline-block;
    color: var(--secondary-text-color);
    font-size: 1.1rem;
}

blockquote:before {
    position: absolute;
    color: var(--primary-color);
    font-size: 2.1rem;
}

blockquote:before {
    content: '❞';
    left: -2rem;
}*/

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

a {
    color: var(--text-color);
    text-decoration: underline;
}

button {
    cursor: pointer;
}

a:hover,
a:focus {
    text-decoration-color: var(--primary-color);
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

small {
    font-size: 0.8rem;
}


fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.mx-auto {
    margin-right: auto;
    margin-left: auto;
}

.mx-sm {
    margin-left: 5px;
    margin-right: 5px;
}

.mt-md {
    margin-top: 15px;
}

.mt-lg {
    margin-top: 30px;
}

.mb-sm {
    margin-bottom: 5px;
}

.mb-md {
    margin-bottom: 10px;
}

.mb-lg {
    margin-bottom: 20px;
}

.mb-xlg {
    margin-bottom: 35px;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mr-md {
    margin-right: 10px;
}

.mt-sm {
    margin-top: 5px;
}

.ml-md {
    margin-left: 10px;
}

.ml-auto {
    margin-left: auto;
}

.pd-md {
    padding: 10px;
}

.pd-lg {
    padding: 20px;
}

.bolder-font {
    font-weight: bolder;
}

.error-title {
    font-size: 7rem;
}

.error-subtitle {
    font-size: 4rem;
    opacity: 0.8;
}

.error-illustration {
    max-width: 600px;
    width: 100%;
}

.significant-top-margin {
    margin-top: 140px;
}

.unstyled-button {
    background: none;
    border: none;
    color: var(--white);
    font-size: 0.9rem;
}

.standard-form-width {
    max-width: 600px;
}

.narrow-content-width {
    max-width: 720px;
}

.button {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--primary-color);
    text-decoration: none;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 1rem;
    background-color: transparent;
    color: var(--text-color);
}

.disabled-button {
    --primary-color: var(--secondary-text-color);
    cursor: not-allowed;
}

.secondary-background {
    background-color: var(--tertiary-background-color);
}

.tertiary-background {
    background-color: var(--quternary-background-color);
}

.text-primary {
    color: var(--primary-color);
}

.button:hover:not(.disabled-button) {
    background-color: var(--primary-color);
    color: var(--white);
}

.d-none {
    display: none !important;
}

.d-block {
    display: block;
}

.horizontal-flex {
    display: flex;
    align-items: center;
}

.vertical-flex {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.justify-content-center {
    justify-content: center;
}

.link-cursor {
    cursor: pointer;
}

.primary-text-color {
    color: var(--primary-color);
}

.wavy-underline {
    text-decoration: underline;
    text-decoration-color: var(--label-color);
    text-decoration-style: wavy;
    text-underline-offset: 2px;
}

.even-drop-shadow {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.button-link {
    color: var(--secondary-text-color);
    text-decoration: underline;
}

.button-link:hover {
    color: var(--text-color);
    opacity: 0.8;
}

.subtle-link {
    text-decoration: none;
}

.subtle-link:hover {
    text-decoration: underline;
}

.error-illustration svg {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.long-text-content > h1:first-child,
.long-text-content > h2:first-child {
    margin-top: 0px;
}

.long-text-content h1, .long-text-content h2, .long-text-content h3 {
    margin-top: 30px;
}

.long-text-content h1 + h2,
.long-text-content h1 + h3,
.long-text-content h2 + h3,
.long-text-content h2 + h4,
.long-text-content h3 + h4 {
    margin-top: 10px;
}

.long-text-content h4 + h5,
.long-text-content h5 + h6 {
    margin-top: 5px;
}

.long-text-content h2 {
    font-weight: 650;
}

.long-text-content h3, .long-text-content h4 {
    font-weight: 500;
    margin-bottom: 5px;
}

.long-text-content h4 {
    margin-top: 20px;
}

.long-text-content h5, .long-text-content h6 {
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bolder;
}

.long-text-content h6 {
    text-transform: uppercase;
    font-weight: normal;
    letter-spacing: 0.05rem;
    font-size: 1.1rem;
}

.long-text-content p:first-child:first-line {
    font-size: 1.15rem;
}

/*.long-text-content p:first-child:first-letter {*/
/*    float: left;*/
/*    font-size: 55px;*/
/*    font-weight: bold;*/
/*    color: var(--primary-color);*/
/*    padding-left: 2px;*/
/*    line-height: 45px;*/
/*    padding-top: 5px;*/
/*    padding-right: 5px;*/
/*}*/

.long-text-content blockquote {
    margin-left: 20px;
}

.long-text-content ul, ol {
    font-size: 1.1rem;
}

.long-text-content p {
    line-height: 1.5;
    hyphens: auto;
    margin: 16px 0 5px 0;
    font-size: 1.05rem;
}

.long-text-content h1 + p,
.long-text-content h2 + p,
.long-text-content h3 + p,
.long-text-content h4 + p,
.long-text-content h5 + p,
.long-text-content h6 + p {
    margin-top: 5px;
}

.long-text-content blockquote > p {
    font-size: 1.15rem;
    margin-top: 8px;
    line-height: 1.4;
}

.long-text-content a:hover {
    text-decoration-color: var(--primary-color);
}

.long-text-content ul {
    padding-left: 20px;
    list-style: square;
}

.long-text-content ol {
    padding-left: 25px;
}

.long-text-content ol li::marker {
    color: var(--secondary-text-color);
    font-size: 0.9rem;
    font-weight: bolder;
}

.long-text-content ul,
.long-text-content ol {
    margin: 5px 0 10px 0;
}

.long-text-content img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 5px;
}

.faint-line {
    background-color: #a5b1c2;
    height: 1px;
    border: 0;
    opacity: 0.4;
}

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

.scrollToTopButton {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    opacity: 0;
    cursor: pointer;
    border: none;
    -webkit-appearance: none;
    background-color: var(--secondary-background-color);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    padding: 0;
}

.scrollToTopButton > svg {
    color: var(--primary-color);
    width: 25px;
    height: 25px;
    transition: transform 200ms ease-in-out;
}

.scrollToTopButton:hover > svg {
    transform: translateY(-3px);
}

.label {
    color: var(--label-color);
    margin-bottom: 0;
    font-weight: bolder;
    font-size: 0.9rem;
}

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

.highlight-border {
    border: var(--prominent-border);
}

.elevation-shadow {
    box-shadow: 0 4px 6px hsla(0, 0%, 0%, .05);
}

.presskit-tagline {
    color: var(--secondary-text-color);
    margin-top: 0;
    line-height: 1.3;
}

.guides-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    max-width: 800px;
    grid-gap: 10px;
}

.detailed-guides-container {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.presskit-card img {
    width: 120px;
    height: 120px;
    margin-right: 10px;
    border-radius: var(--app-icon-border-radius);
}

.presskit-card {
    padding: 15px;
    background-color: var(--tertiary-background-color);
    border-radius: var(--standard-corner-radius);
    display: flex;
}

.image-tag {
    border-radius: 20px;
    margin-left: 10px;
    margin-bottom: 7px;
    padding: 5px 18px;
    border: 2px solid var(--primary-color);
    background-color: var(--tertiary-background-color);
    opacity: 0.8;
    cursor: pointer;
    text-decoration: none;
    position: relative;
}

.image-tag .badge-count {
    display: grid;
    place-content: center;
    font-size: 12px;
    font-weight: bolder;
    border-radius: 10px;
    height: 19px;
    min-width: 19px;
    background-color: var(--tertiary-background-color);
    border: 2px solid var(--primary-color);
    text-align: center;
    position: absolute;
    top: -5px;
    right: -8px;
    padding: 0 2px;
}


.active-tag {
    background-color: var(--primary-color) !important;
    opacity: 1;
}

.presskit-links {
    padding: 0;
    margin-top: 5px;
    margin-bottom: 5px;
    list-style: none;
}

.presskit-links > li {
    margin-bottom: 5px;
}

.presskit-links a {
    text-decoration: none;
}

.presskit-links a:hover {
    text-decoration: underline;
}

.presskit-links-container {
    padding: 10px;
    background-color: var(--secondary-background-color);
    border-radius: var(--standard-corner-radius);
    margin-left: -5px;
}

.presskit-links-heading {
    margin-bottom: 0px;
    margin-top: 0;
    font-weight: bolder;
}

.presskit-file-list-container {
    background-color: var(--tertiary-background-color);
    padding: 10px 20px;
    border-radius: var(--standard-corner-radius);
    max-width: 600px;
}

.fifth-image {
    flex-basis: 20%;
}

.fourth-image {
    flex-basis: 25%;
}

.third-image {
    flex-basis: calc(100% / 3);
}

.half-image {
    flex-basis: 50%;
}

.full-image {
    flex-basis: 100%;
}

.presskit-image-container img {
    width: 97%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.presskit-image-container-wide img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
}

.presskit-image-container {
    margin-bottom: 10px;
    position: relative;
}

.presskit-image-container-wide {
    position: relative;
    margin-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
}

.images-line-break {
    width: 100%;
}

.change-password-form {

}

.presskit-card-container {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 32%;
}

.link-field {
    background-color: var(--secondary-background-color);
    font-size: 0.8rem;
    padding: 7px 35px 7px 10px;
    position: relative;
    min-height: 30px;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 4px;
    word-break: break-all;
}

.link-field .link-field-content {
    display: inline-block;
    opacity: 0.8;
}

.link-field-copy-button {
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.notification-icon {
    width: 18px;
    height: 18px;
}

.faint-link {
    color: var(--secondary-background-color);
    display: block;
    text-align: center;
}

.faint-link:hover {
    color: var(--text-color);
}

.draft-badge {
    background-color: var(--primary-color);
    padding: 2px 5px;
    color: var(--text-color);
    font-weight: bolder;
    font-size: 0.7rem;
    border-radius: 3px;
}

.align-left {
    text-align: left !important;
}

.large-icon {
    width: 60px;
    height: 60px;
}

.content-divider {
    display: block;
    width: 250px;
    border-bottom: 3px solid var(--primary-color);
}

.secondary-label {
    opacity: 0.7;
}

.article-container {
    max-width: 40em;
    margin-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
    hyphens: auto;
    color: var(--text-color);
}

.article-container img {
    max-width: 100%;
}

.article-container h2 {
    margin-top: 30px;
    margin-bottom: 5px;
    color: var(--blue-header-color)
}

.article-container h3 {
    margin-top: 30px;
    margin-bottom: 5px;
    color: var(--red-header-color);
}

.presskit-badge {
    padding: 2px 5px;
    background-color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: bolder;
    border-radius: 5px;
}

.guide-card {
    border-radius: var(--standard-corner-radius);
    background-color: var(--tertiary-background-color);
    padding: 15px;
    flex-basis: 200px;
    position: relative;
    text-decoration: none;
    display: block;
}


.card {
    padding: 15px;
    border-radius: var(--standard-corner-radius);
    background-color: var(--tertiary-background-color);
    display: block;
    text-decoration: none;
}

.detailed-guide-card {
    padding: 0px;
    border: 2px solid var(--tertiary-background-color);
}

.detailed-guide-card:hover {
    border: 2px dashed var(--label-color);
}

.detailed-guide-card:hover .pattern-element {
    opacity: 0.5;
}

.detailed-guide-card .upper-content {
    padding: 15px;
    border-bottom: 1px solid var(--faint-border);
}

.detailed-guide-card .pattern-element {
    z-index: 1;
}

.detailed-guide-card h2 {
    z-index: 5;
    min-height: 90px;
    position: relative;
}

.detailed-guide-card p {
    margin: 0;
    font-size: 1.1rem;
}

.detailed-guide-card .lead {
    padding: 15px 15px 25px;
}

.tool-card:hover {
    border: 2px dashed var(--primary-color);
}

.guide-card:hover,
.guide-card:focus {
    box-shadow: 0px 0px 10px var(--primary-color);
}

.guide-detail {
    max-width: 40em;
    padding-bottom: 50px;
}

.guide-detail p {
    font-size: 1.2rem;
}

.guide-detail .heading + p {
    font-size: 1.4rem;
    line-height: 1.4;
}

.guide-detail .heading + p:first-line {
    font-weight: bolder;
}

.guide-detail .heading {
    font-size: 3.7rem;
    hyphens: none;
    font-weight: 500;
    line-height: 0.9;
    position: relative;
    margin-bottom: 40px;
}

.guide-detail .heading::before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0h2v20H9V0zm25.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm-20 20l1.732 1-10 17.32-1.732-1 10-17.32zM58.16 4.134l1 1.732-17.32 10-1-1.732 17.32-10zm-40 40l1 1.732-17.32 10-1-1.732 17.32-10zM80 9v2H60V9h20zM20 69v2H0v-2h20zm79.32-55l-1 1.732-17.32-10L82 4l17.32 10zm-80 80l-1 1.732-17.32-10L2 84l17.32 10zm96.546-75.84l-1.732 1-10-17.32 1.732-1 10 17.32zm-100 100l-1.732 1-10-17.32 1.732-1 10 17.32zM38.16 24.134l1 1.732-17.32 10-1-1.732 17.32-10zM60 29v2H40v-2h20zm19.32 5l-1 1.732-17.32-10L62 24l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM111 40h-2V20h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zM40 49v2H20v-2h20zm19.32 5l-1 1.732-17.32-10L42 44l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM91 60h-2V40h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM39.32 74l-1 1.732-17.32-10L22 64l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM71 80h-2V60h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM120 89v2h-20v-2h20zm-84.134 9.16l-1.732 1-10-17.32 1.732-1 10 17.32zM51 100h-2V80h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM100 109v2H80v-2h20zm19.32 5l-1 1.732-17.32-10 1-1.732 17.32 10zM31 120h-2v-20h2v20z' fill='%23de2180' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
    position: absolute;
    --outer-padding: -20px;
    z-index: -1;
    top: var(--outer-padding);
    bottom: var(--outer-padding);
    left: var(--outer-padding);
    right: var(--outer-padding);
    opacity: 0.7;
    animation: pulse 2s infinite alternate;
}

.pulse-animation {
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }
    100% {
        opacity: 0.85;
    }
}

.blink-animation {
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    0% {
        opacity: 1;
        color: hsla(330, 74%, 31%, 1);
    }
    100% {
        opacity: 1;
        color: hsla(330, 74%, 63%, 1);
    }
}

.guide-detail h2 {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 10px;
    position: relative;
    margin-top: 60px;
    color: var(--blue-header-color);
}

.guide-detail h2::before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23799ff6' fill-opacity='0.4'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    position: absolute;
    bottom: -5px;
    top: -5px;
    left: -20px;
    width: 30%;
    z-index: -1;
}

.guide-detail h3 {
    margin-bottom: 8px;
    margin-top: 45px;
    display: grid;
    grid-template-columns: auto 1fr;
}

.guide-detail h3::after {
    background: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0h2v20H9V0zm25.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm-20 20l1.732 1-10 17.32-1.732-1 10-17.32zM58.16 4.134l1 1.732-17.32 10-1-1.732 17.32-10zm-40 40l1 1.732-17.32 10-1-1.732 17.32-10zM80 9v2H60V9h20zM20 69v2H0v-2h20zm79.32-55l-1 1.732-17.32-10L82 4l17.32 10zm-80 80l-1 1.732-17.32-10L2 84l17.32 10zm96.546-75.84l-1.732 1-10-17.32 1.732-1 10 17.32zm-100 100l-1.732 1-10-17.32 1.732-1 10 17.32zM38.16 24.134l1 1.732-17.32 10-1-1.732 17.32-10zM60 29v2H40v-2h20zm19.32 5l-1 1.732-17.32-10L62 24l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM111 40h-2V20h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zM40 49v2H20v-2h20zm19.32 5l-1 1.732-17.32-10L42 44l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM91 60h-2V40h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM39.32 74l-1 1.732-17.32-10L22 64l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM71 80h-2V60h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM120 89v2h-20v-2h20zm-84.134 9.16l-1.732 1-10-17.32 1.732-1 10 17.32zM51 100h-2V80h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM100 109v2H80v-2h20zm19.32 5l-1 1.732-17.32-10 1-1.732 17.32 10zM31 120h-2v-20h2v20z' fill='%23de2180' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
    content: '';
    height: 50%;
    align-self: end;
    padding-bottom: 10px;
    opacity: 0.5;
}

.neon-button {
    font-size: 1.8rem;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: var(--primary-color);
    border: var(--primary-color) 0.125em solid;
    padding: 0.25em 1em;
    border-radius: 0.25em;
    text-shadow: 0 0 0.125em hsla(0, 0%, 100%, 0.3), 0 0 0.45em currentColor;
    box-shadow: inset 0 0 0.5em 0 var(--primary-color), 0 0 0.5em 0 var(--primary-color);
    position: relative;
    text-transform: uppercase;
}

.neon-button::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 0 2em 0.5em var(--primary-color);
    opacity: 0;
    background-color: var(--primary-color);
    z-index: -1;
    transition: opacity 100ms linear;
}

@media (hover: hover) {
    .neon-button:hover,
    .neon-button:focus {
        color: white;
        text-shadow: none;
    }

    .neon-button:hover::after,
    .neon-button:focus::after {
        opacity: 1;
    }
}

.position-relative {
    position: relative;
}

.pattern-element {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.faint-pattern {
    opacity: 0.2;
}

.subtle-pattern {
    opacity: 0.4;
}

.temple-pattern-background {
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23799ff6' fill-opacity='0.4'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.lines-pattern-background {
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0h2v20H9V0zm25.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm-20 20l1.732 1-10 17.32-1.732-1 10-17.32zM58.16 4.134l1 1.732-17.32 10-1-1.732 17.32-10zm-40 40l1 1.732-17.32 10-1-1.732 17.32-10zM80 9v2H60V9h20zM20 69v2H0v-2h20zm79.32-55l-1 1.732-17.32-10L82 4l17.32 10zm-80 80l-1 1.732-17.32-10L2 84l17.32 10zm96.546-75.84l-1.732 1-10-17.32 1.732-1 10 17.32zm-100 100l-1.732 1-10-17.32 1.732-1 10 17.32zM38.16 24.134l1 1.732-17.32 10-1-1.732 17.32-10zM60 29v2H40v-2h20zm19.32 5l-1 1.732-17.32-10L62 24l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM111 40h-2V20h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zM40 49v2H20v-2h20zm19.32 5l-1 1.732-17.32-10L42 44l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM91 60h-2V40h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM39.32 74l-1 1.732-17.32-10L22 64l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM71 80h-2V60h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM120 89v2h-20v-2h20zm-84.134 9.16l-1.732 1-10-17.32 1.732-1 10 17.32zM51 100h-2V80h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM100 109v2H80v-2h20zm19.32 5l-1 1.732-17.32-10 1-1.732 17.32 10zM31 120h-2v-20h2v20z' fill='%23de2180' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.locked-icon, .unlocked-icon {
    width: 35px;
    height: 35px;
}

.lock-icon-container {
    display: inline-block;
    margin-left: 5px;
    cursor: pointer;
}

.danger-button {
    background-color: var(--error-accent) !important;
}

.danger-button:hover {
    color: white;
}

.discount-banner {
    background-color: var(--primary-color);
    color: var(--white);
    display: grid;
    place-content: center;
    padding: 10px;
}

.discount-banner p {
    margin: 0;
    font-weight: bolder;
}

.simple-nav {
    display: flex;
    flex-direction: row;
}

@media only screen and (max-width: 700px) {
    .presskit-card-container {
        flex-basis: 100%;
    }

    .article-container {
        margin-top: 0;
    }

    .significant-top-margin {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 520px) {
    .detailed-guide-card h2 {
        min-height: 40px;
    }
}

@media only screen and (max-width: 1200px) and (min-width: 700px) {
    .presskit-card-container {
        flex-basis: 50%;
    }
}