/* EconomDoors blog */
.bm {
    font-family: "Open Sans", sans-serif;
    color: #02262d;
}

.bm a {
    color: #1ed2f8;
}

.bm a:hover {
    color: #0bb8dc;
    text-decoration: none;
}

/* Listing has its own H1. Shop TitleCont, if present, duplicates it. */
body:has(.ed-blog) .TitleCont,
.TitleCont--blog {
    display: none !important;
}

/* Shop `header { position:fixed }` at ≤768px would pin the journal masthead under the bar. */
.ed-blog .ed-blog-head {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
    height: auto !important;
    z-index: auto !important;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: none !important;
}

.ed-blog {
    --font: "Open Sans", Arial, sans-serif;
    --ink: #02262d;
    --head: #19282c;
    --muted: #5c7378;
    --quiet: #8aa0a4;
    --line: #e6eeee;
    --accent: #1dd2f8;
    --accent-ink: #0aa9cc;

    padding: 28px 0 80px;
    background: #f4f7f7;
    font-family: var(--font);
    color: var(--ink);
    -webkit-text-size-adjust: 100%;
}

.ed-blog a:focus,
.ed-blog button:focus,
.ed-post-card a:focus {
    outline: none;
}

.ed-blog .ed-crumbs {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
    color: #8aa0a4;
    line-height: 1.55;
}

.ed-blog .ed-crumbs li {
    display: inline;
}

.ed-blog .ed-crumbs li:not(:last-child):after {
    content: "/";
    margin: 0 10px;
    color: #c5d0d2;
    text-transform: none;
}

.ed-blog .ed-crumbs a {
    color: #8aa0a4;
}

.ed-blog .ed-crumbs a:hover {
    color: #1ed2f8;
}

.ed-blog-kicker {
    display: none;
}

.ed-blog h1.ed-blog-page__title {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -.02em;
    text-transform: none;
    color: #19282c;
}

.ed-blog .ed-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #19282c;
}

.ed-blog .ed-label:before {
    content: "";
    width: 8px;
    height: 8px;
    background: #1dd2f8;
    flex: 0 0 8px;
    outline: 2px solid #02262d;
    outline-offset: 2px;
}

.ed-blog p.ed-blog__lead,
.ed-blog .ed-blog__lead {
    max-width: 640px;
    color: #5c7378;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
}

.ed-blog-rubrics {
    margin: 0 0 40px;
    padding: 2px;
}

.ed-blog-rubrics__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

@media (max-width: 1199px) {
    .ed-blog-rubrics__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.ed-blog a.ed-blog-rubric {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    min-height: 0;
    padding: 14px 16px 16px;
    background: #fff;
    box-shadow: inset 0 3px 0 #1dd2f8;
    color: #19282c;
    text-decoration: none;
    border-bottom: 0;
    transition: box-shadow .15s ease, color .15s ease;
}

.ed-blog a.ed-blog-rubric:hover {
    color: #19282c;
}

.ed-blog a.ed-blog-rubric.is-active {
    outline: none;
    box-shadow: inset 0 3px 0 #1dd2f8, 0 0 0 2px #02262d;
}

.ed-blog-rubric__kind {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #19282c;
}

.ed-blog-rubric__kind:before {
    content: "";
    width: 6px;
    height: 6px;
    background: #1dd2f8;
    flex: 0 0 6px;
    outline: 2px solid #02262d;
    outline-offset: 1px;
}

.ed-blog-rubric__name {
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -.015em;
    color: #19282c;
    transition: color .15s ease;
}

.ed-blog-rubric__meta {
    font-size: 12px;
    line-height: 1.3;
    color: #8aa0a4;
}

.ed-blog-mosaic {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px 24px;
    align-items: stretch;
}

.ed-blog-mosaic a.ed-post-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    background: #fff;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: inset 0 3px 0 #1dd2f8;
    color: inherit;
    text-decoration: none;
    border-bottom: 0;
    grid-column: span 1;
}

.ed-blog-mosaic a.ed-post-card:hover,
.ed-related a.ed-post-card:hover {
    color: inherit;
    text-decoration: none;
}

.ed-related a.ed-post-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border: 0;
    overflow: hidden;
    box-shadow: inset 0 3px 0 #1dd2f8;
    color: inherit;
    text-decoration: none;
    border-bottom: 0;
    grid-column: auto;
}

.ed-related .ed-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #19282c;
}

.ed-related .ed-label:before {
    content: "";
    width: 8px;
    height: 8px;
    background: #1dd2f8;
    flex: 0 0 8px;
    outline: 2px solid #02262d;
    outline-offset: 2px;
}

.ed-post-card__image,
.ed-post-card__photo {
    position: relative;
    display: block;
    overflow: hidden;
    background: #02262d;
    aspect-ratio: 3 / 2;
}

.ed-post-card__image img,
.ed-post-card__photo img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .35s ease;
}

.ed-post-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px 16px 18px;
    box-shadow: none;
}

.ed-post-card__title {
    display: block;
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -.015em;
    color: #19282c;
    transition: color .15s ease;
}

.ed-post-card__dek {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.4;
    color: #5c7378;
}

.ed-post-card__byline {
    display: block;
    margin-top: auto;
    font-size: 12px;
    line-height: 1.4;
    color: #8aa0a4;
}

@media (hover: hover) and (pointer: fine) {
    .ed-blog a.ed-blog-rubric:hover {
        box-shadow: inset 0 3px 0 #1dd2f8, 0 0 0 2px #1dd2f8;
    }

    .ed-blog a.ed-blog-rubric:hover .ed-blog-rubric__name {
        color: #0aa9cc;
    }

    .ed-blog a.ed-blog-rubric.is-active:hover {
        box-shadow: inset 0 3px 0 #1dd2f8, 0 0 0 2px #02262d;
    }

    .ed-blog a.ed-blog-rubric.is-active:hover .ed-blog-rubric__name {
        color: #19282c;
    }

    .ed-blog-mosaic a.ed-post-card:hover .ed-post-card__title,
    .ed-related a.ed-post-card:hover .ed-post-card__title {
        color: #0aa9cc;
    }

    .ed-blog-mosaic a.ed-post-card:hover .ed-post-card__image img,
    .ed-blog-mosaic a.ed-post-card:hover .ed-post-card__photo img,
    .ed-related a.ed-post-card:hover .ed-post-card__image img {
        transform: scale(1.06);
    }
}

.ed-blog-mosaic a.ed-post-card--lead {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    background: none;
    box-shadow: none;
    overflow: visible;
}

.ed-post-card--lead .ed-post-card__photo {
    margin: 0;
    background: #02262d;
}

.ed-post-card--lead .ed-post-card__title {
    transition: color .15s ease;
}

.ed-post-card--lead .ed-post-card__copy .ed-label {
    margin: 0 0 12px;
}

.ed-post-card--lead .ed-post-card__title {
    margin: 0 0 16px;
    font-size: 32px;
    line-height: 1.15;
    letter-spacing: -.02em;
}

.ed-post-card--lead .ed-post-card__dek {
    display: block;
    -webkit-line-clamp: unset;
    margin: 0 0 16px;
    font-size: 20px;
    line-height: 1.55;
    color: #3d555b;
}

.ed-post-card--lead .ed-post-card__byline {
    font-size: 13px;
    color: #5c7378;
}

.ed-blog-mosaic a.ed-post-card--mid {
    grid-column: span 2;
}

.ed-post-card--mid .ed-post-card__body {
    padding: 20px 24px 22px;
}

.ed-post-card--mid .ed-post-card__title {
    font-size: 22px;
    letter-spacing: -.02em;
}

.ed-post-card--mid .ed-post-card__dek {
    font-size: 15px;
    line-height: 1.5;
}

.ed-blog-mosaic a.ed-post-card--wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.ed-post-card--wide .ed-post-card__image {
    aspect-ratio: auto;
    height: 100%;
    min-height: 180px;
}

.ed-post-card--wide .ed-post-card__image img {
    height: 100%;
    min-height: 180px;
}

.ed-post-card--wide .ed-post-card__body {
    padding: 20px 22px 22px;
}

.ed-post-card--wide .ed-post-card__title {
    font-size: 20px;
}

.ed-blog-insert {
    grid-column: span 2;
    min-width: 0;
    display: flex;
    align-items: stretch;
}

.ed-blog-insert .ed-tldr,
.ed-blog-insert .ed-quote {
    margin: 0;
    width: 100%;
}

.ed-blog .ed-tldr {
    padding: 24px 28px 26px;
    background: #fff;
    box-shadow: inset 0 3px 0 #1dd2f8;
}

.ed-blog .ed-tldr__label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #19282c;
}

.ed-blog .ed-tldr__label:before {
    content: "";
    width: 8px;
    height: 8px;
    background: #1dd2f8;
    flex: 0 0 8px;
    outline: 2px solid #02262d;
    outline-offset: 2px;
}

.ed-blog .ed-tldr p {
    margin: 0;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
    color: #19282c;
}

.ed-blog .ed-quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 4px 0 4px 64px;
}

.ed-blog .ed-quote:before {
    content: "«";
    position: absolute;
    left: 2px;
    top: 4px;
    width: 36px;
    height: 36px;
    font-size: 26px;
    line-height: 34px;
    font-weight: 700;
    text-align: center;
    color: #02262d;
    background: #1dd2f8;
    outline: 2px solid #02262d;
    outline-offset: 2px;
}

.ed-blog .ed-quote__text {
    margin: 0;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 600;
    font-style: italic;
    color: #19282c;
}

.ed-blog .ed-quote__src {
    display: block;
    margin-top: 14px;
    font-size: 11px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #8aa0a4;
}

.ed-blog .ed-quote__src:before {
    content: "— ";
    letter-spacing: 0;
}

.ed-blog-pager {
    margin-top: 8px;
    padding-top: 24px;
    border-top: 1px solid #e6eeee;
}

.ed-blog-pager ul.pagination,
.ed-blog-pager ul.pagination.pagination-lg {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 28px;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
}

.ed-blog-pager ul.pagination > li {
    display: block;
}

.ed-blog-pager ul.pagination > li > a,
.ed-blog-pager ul.pagination > li > span,
.ed-blog-pager ul.pagination.pagination-lg > li > a,
.ed-blog-pager ul.pagination.pagination-lg > li > span {
    display: inline-block;
    float: none;
    padding: 0 0 8px;
    margin: 0;
    min-width: 0;
    border: 0;
    border-radius: 0;
    border-bottom: 2px solid transparent;
    background: none;
    color: #8aa0a4;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: none;
}

.ed-blog-pager ul.pagination > .active > span,
.ed-blog-pager ul.pagination > .active > a,
.ed-blog-pager ul.pagination.pagination-lg > .active > span,
.ed-blog-pager ul.pagination.pagination-lg > .active > a {
    background: none;
    color: #19282c;
    border: 0;
    border-bottom: 2px solid #1dd2f8;
}

.ed-blog-pager ul.pagination > li > a:hover,
.ed-blog-pager ul.pagination.pagination-lg > li > a:hover {
    background: none;
    color: #19282c;
}

.ed-related .ed-post-card {
    grid-column: auto;
    height: 100%;
}

.ed-blog-empty {
    padding: 40px 0;
    color: #5c7378;
}

.bm-pagination {
    margin-top: 8px;
    padding-top: 24px;
    border-top: 1px solid #e6eeee;
    color: #8aa0a4;
    font-size: 13px;
}

.bm-pagination .pagination > li > a,
.bm-pagination .pagination > li > span {
    border-radius: 0;
    border-color: #e6eeee;
    color: #19282c;
    background: #fff;
}

.bm-pagination .pagination > .active > span,
.bm-pagination .pagination > .active > a {
    background: #1dd2f8;
    border-color: #1dd2f8;
    color: #02262d;
}

.bm-pagination .pagination > li > a:hover {
    background: #ecfbfe;
    border-color: #1dd2f8;
    color: #02262d;
}

/* Article page */
.ed-article-page {
    padding: 40px 0 64px;
}

.ed-crumbs {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    font-size: 13px;
    color: #5c7378;
}

.ed-crumbs li {
    display: inline;
}

.ed-crumbs li:not(:last-child):after {
    content: "/";
    margin: 0 8px;
    color: #c5d0d2;
}

.ed-crumbs a {
    color: #5c7378;
}

.ed-crumbs a:hover {
    color: #1ed2f8;
}

.ed-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 40px;
    align-items: start;
}

.ed-article {
    max-width: none;
    margin: 0;
}

.ed-article__cats {
    margin: 0 0 14px;
}

.ed-article__cats a {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #5c7378;
    text-transform: none;
    letter-spacing: 0;
    padding: 0;
    background: none;
    border-radius: 0;
}

.ed-article__cats a:hover {
    color: #1ed2f8;
}

.ed-article__title {
    color: #19282c;
    font-size: 40px;
    line-height: 1.18;
    margin: 0 0 24px;
    font-weight: 700;
    max-width: 920px;
}

.ed-article__hero {
    margin: 0 0 36px;
    border-radius: 12px;
    overflow: hidden;
    background: #f4f7f7;
    aspect-ratio: 2.35 / 1;
}

.ed-article__hero a {
    display: block;
    width: 100%;
    height: 100%;
}

.ed-article__hero img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

.ed-article__content {
    font-size: 18px;
    line-height: 1.75;
    color: #02262d;
}

.ed-article__content > p:first-of-type {
    font-size: 20px;
    line-height: 1.6;
    color: #3d555b;
    margin-bottom: 28px;
}

.ed-article__content h2,
.ed-article__content .h2 {
    font-size: 26px;
    line-height: 1.25;
    margin: 40px 0 16px;
    color: #19282c;
    font-weight: 700;
}

.ed-article__content h3,
.ed-article__content .h3 {
    font-size: 20px;
    margin: 28px 0 10px;
    color: #19282c;
    font-weight: 700;
}

.ed-article__content p {
    margin: 0 0 18px;
}

.ed-article__content a {
    color: #0aa9cc;
    text-decoration: none;
    border-bottom: 1px solid rgba(29, 210, 248, .55);
}

.ed-article__content a:hover {
    color: #1ed2f8;
    border-bottom-color: #1ed2f8;
}

.ed-article__content hr,
.ed-hr {
    border: 0;
    height: 1px;
    background: #e6eeee;
    margin: 28px 0 8px;
}

.ed-article__content hr + h2,
.ed-article__content hr + .h2 {
    margin-top: 20px;
}

.ed-article__content ul {
    list-style: none;
    margin: 0 0 24px;
    padding: 20px 22px;
    background: #f4f7f7;
    border-radius: 12px;
}

.ed-article__content ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
}

.ed-article__content ul li:last-child {
    margin-bottom: 0;
}

.ed-article__content ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1dd2f8;
}

.ed-article__content ol {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    counter-reset: edstep;
}

.ed-article__content ol li {
    counter-increment: edstep;
    position: relative;
    margin-bottom: 10px;
    padding: 16px 18px 16px 56px;
    background: #fff;
    border: 1px solid #eef4f4;
    border-radius: 12px;
}

.ed-article__content ol li:before {
    content: counter(edstep);
    position: absolute;
    left: 16px;
    top: 16px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1dd2f8;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
}

.ed-article__content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 8px 0 24px;
}

.ed-table-wrap {
    margin: 16px 0 28px;
    border: 1px solid #e6eeee;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(2, 38, 45, .05);
}

.ed-article__content table,
.ed-table {
    width: 100%;
    margin: 0;
    border: 0;
    border-collapse: collapse;
    border-spacing: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    font-size: 16px;
}

.ed-article__content th,
.ed-article__content td,
.ed-table th,
.ed-table td {
    border-bottom: 1px solid #eef4f4;
    padding: 16px 20px !important;
    text-align: left;
    vertical-align: top;
    line-height: 1.45;
    color: #02262d;
}

.ed-article__content th,
.ed-table th {
    background: #f4f7f7 !important;
    color: #19282c !important;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 1px solid #e6eeee;
}

.ed-article__content td,
.ed-table td {
    background: #fff;
}

.ed-article__content tbody tr:nth-child(even) td,
.ed-table tbody tr:nth-child(even) td {
    background: #fafcfc;
}

.ed-article__content tr:last-child td,
.ed-table tr:last-child td {
    border-bottom: 0;
}

.ed-fact {
    display: flex;
    align-items: stretch;
    margin: 24px 0 28px;
    background: #fff;
    border: 1px solid #eef4f4;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(2, 38, 45, .05);
}

.ed-fact__label {
    flex: 0 0 auto;
    width: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    background: #02262d;
    color: #1dd2f8;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .03em;
    line-height: 1.2;
    text-align: center;
}

.ed-fact__text {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0 !important;
    padding: 16px 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #3d555b;
}

.ed-fact__text em {
    font-style: italic;
    color: #02262d;
}

.ed-steps {
    margin: 22px 0 28px;
    background: #fff;
    border: 1px solid #eef4f4;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(2, 38, 45, .05);
}

.ed-steps__row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid #eef4f4;
}

.ed-steps__row:last-child {
    border-bottom: 0;
}

.ed-steps__n {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #02262d;
    color: #1dd2f8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    border-radius: 10px;
}

.ed-steps__text {
    margin: 0 !important;
    padding-top: 6px;
    font-size: 16px;
    line-height: 1.5;
    color: #02262d;
}

.ed-links {
    margin: 32px 0 8px;
    padding: 8px 8px 8px;
    background: #fff;
    border: 1px solid #eef4f4;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(2, 38, 45, .05);
}

.ed-links__title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #19282c;
    padding: 14px 16px 8px;
    margin: 0;
}

.ed-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: auto;
    margin: 0;
    padding: 12px 16px;
    color: #02262d;
    border-bottom: 0;
    border-radius: 8px;
    line-height: 1.4;
}

.ed-links a:after {
    content: "→";
    color: #1ed2f8;
    font-weight: 700;
    flex: 0 0 auto;
}

.ed-article__content .ed-links a {
    color: #02262d;
    border-bottom: 0;
}

.ed-article__content .ed-links a:hover {
    background: #f4f7f7;
    color: #02262d;
    border-bottom: 0;
}

.ed-callout {
    margin: 24px 0 28px;
    padding: 20px 22px;
    background: #ecfbfe;
    border-left: 4px solid #1dd2f8;
    border-radius: 12px;
}

.ed-callout__title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #19282c;
    margin-bottom: 8px;
}

.ed-callout p:last-child {
    margin-bottom: 0;
}

.ed-note {
    margin: 28px 0;
    padding: 22px 24px;
    background: #f4f7f7;
    border-radius: 12px;
}

.ed-note__title {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
}

.ed-faq {
    margin: 40px 0 0;
}

.ed-faq__title {
    font-size: 26px;
    line-height: 1.25;
    margin: 0 0 16px;
    font-weight: 700;
    color: #19282c;
}

.ed-faq__item {
    border-bottom: 1px solid #eef4f4;
}

.ed-article-page .ed-faq__q,
.ed-faq__q {
    display: block;
    width: 100%;
    padding: 18px 40px 18px 0;
    border: 0;
    background: transparent;
    text-align: left;
    font-family: "Open Sans", Arial, sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    color: #19282c;
    position: relative;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.ed-faq__q:after {
    content: "+";
    position: absolute;
    right: 0;
    top: 18px;
    color: #1dd2f8;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
}

.ed-faq__item.is-open .ed-faq__q:after {
    content: "–";
}

.ed-faq__a {
    display: none;
    padding: 0 40px 18px 0;
    color: #5c7378;
    font-size: 17px;
    line-height: 1.65;
}

.ed-faq__item.is-open .ed-faq__a {
    display: block;
}

.ed-blog-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 40px 0 0;
    padding: 24px 28px;
    background: #ecfbfe;
    border-radius: 12px;
}

.ed-blog-cta__title {
    font-size: 22px;
    font-weight: 700;
    color: #19282c;
    margin: 0 0 6px;
}

.ed-blog-cta__text {
    margin: 0;
    color: #5c7378;
}

.ed-blog-cta__btn {
    display: inline-block;
    padding: 12px 22px;
    background: #1dd2f8;
    color: #fff !important;
    border-radius: 6px;
    font-weight: 700;
    white-space: nowrap;
}

.ed-blog-cta__btn:hover {
    background: #0bb8dc;
    color: #fff !important;
}

.ed-article-side {
    position: sticky;
    top: 24px;
}

.ed-toc-mobile {
    display: none;
}

.ed-article-side__card {
    background: #fff;
    border: 1px solid #eef4f4;
    border-radius: 16px;
    box-shadow: 0 14px 36px rgba(2, 38, 45, .08);
    padding: 22px 20px 18px;
}

.ed-side-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #19282c;
    margin: 0 0 12px;
}

.ed-toc,
.ed-side-related {
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eef4f4;
}

.ed-side-related {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.ed-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ed-toc-list li {
    margin: 0 0 10px;
}

.ed-toc-list a {
    color: #5c7378;
    font-size: 14px;
    line-height: 1.4;
}

.ed-toc-list a:hover {
    color: #1ed2f8;
}

.ed-side-cta {
    margin-bottom: 20px;
    padding: 18px;
    background: #02262d;
    color: #fff;
    border-radius: 12px;
}

.ed-side-cta .ed-side-title {
    color: #1dd2f8;
}

.ed-side-cta p {
    color: #c5d0d2;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 12px;
}

.ed-side-cta a {
    color: #1dd2f8;
    font-weight: 700;
}

.ed-side-related a {
    display: block;
    color: #02262d;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #eef4f4;
}

.ed-side-related a:hover {
    color: #1ed2f8;
}

.ed-side-all {
    font-weight: 600 !important;
    color: #1ed2f8 !important;
    border-bottom: none !important;
}

.ed-related {
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid #eef4f4;
}

.ed-related__title {
    font-size: 26px;
    line-height: 1.25;
    margin: 0 0 24px;
    font-weight: 700;
    color: #19282c;
}

.ed-related__grid {
    display: flex;
    flex-wrap: wrap;
}

.ed-related__item {
    display: flex;
    height: 100%;
    margin-bottom: 24px;
}

@media (max-width: 991px) {
    .ed-article-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ed-article-side {
        position: static;
    }

    .ed-toc-mobile {
        display: block;
        margin: 0 0 24px;
        padding: 18px 18px 10px;
        background: #fff;
        border: 1px solid #eef4f4;
        border-radius: 16px;
        box-shadow: 0 12px 32px rgba(2, 38, 45, .08);
    }

    .ed-toc-mobile .ed-toc-list li {
        margin: 0 0 12px;
    }

    .ed-toc-mobile .ed-toc-list a {
        font-size: 16px;
        color: #02262d;
    }

    .ed-article-side .ed-toc {
        display: none;
    }

    .ed-article__title {
        font-size: 28px;
    }

    .ed-article__hero {
        aspect-ratio: 16 / 9;
        margin-bottom: 24px;
    }

    .ed-fact {
        flex-direction: column;
    }

    .ed-fact__label {
        width: 100%;
        justify-content: flex-start;
        padding: 10px 16px;
    }

    .ed-steps__n {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .ed-article-page {
        padding-top: 28px;
    }
}

@media (max-width: 1199px) {
    .ed-blog-mosaic {
        grid-template-columns: 1fr 1fr;
        gap: 28px 16px;
    }

    .ed-blog-mosaic a.ed-post-card--lead {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        gap: 16px;
        align-items: stretch;
    }

    .ed-blog-mosaic a.ed-post-card--lead .ed-post-card__title {
        font-size: 28px;
    }

    .ed-blog-mosaic a.ed-post-card--mid {
        grid-column: span 1;
    }

    .ed-blog-mosaic a.ed-post-card--wide {
        grid-column: 1 / -1;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .ed-blog-insert {
        grid-column: span 1;
    }
}

@media (max-width: 767px) {
    .ed-blog {
        padding: 16px 0 56px;
    }

    .ed-blog .ed-blog-head {
        margin: 0 0 20px;
        gap: 8px;
    }

    .ed-blog h1.ed-blog-page__title {
        font-size: 26px;
        line-height: 1.2;
        color: #19282c;
    }

    .ed-blog p.ed-blog__lead,
    .ed-blog .ed-blog__lead {
        font-size: 14px;
        line-height: 1.5;
        margin: 0;
    }

    .ed-blog-rubrics {
        margin: 0 0 24px;
        padding: 2px;
        overflow: visible;
    }

    .ed-blog-rubrics__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .ed-blog a.ed-blog-rubric {
        min-height: 0;
        padding: 12px;
        gap: 6px;
    }

    .ed-blog a.ed-blog-rubric.is-active {
        box-shadow: inset 0 3px 0 #1dd2f8, inset 0 0 0 2px #02262d;
    }

    .ed-blog-rubric__name {
        font-size: 14px;
    }

    .ed-blog-mosaic {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ed-blog-mosaic a.ed-post-card,
    .ed-blog-mosaic a.ed-post-card--lead,
    .ed-blog-mosaic a.ed-post-card--mid,
    .ed-blog-mosaic a.ed-post-card--wide,
    .ed-blog-mosaic a.ed-post-card--small {
        grid-column: auto;
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        background: #fff;
        box-shadow: inset 0 3px 0 #1dd2f8;
        overflow: hidden;
    }

    .ed-blog-mosaic a.ed-post-card--wide {
        grid-template-columns: 1fr;
    }

    .ed-blog-mosaic a.ed-post-card--lead .ed-post-card__photo,
    .ed-blog-mosaic a.ed-post-card .ed-post-card__image,
    .ed-post-card--wide .ed-post-card__image {
        aspect-ratio: 3 / 2;
        height: auto;
        min-height: 0;
    }

    .ed-blog-mosaic a.ed-post-card--lead .ed-post-card__copy,
    .ed-post-card--lead .ed-post-card__copy,
    .ed-post-card--mid .ed-post-card__body,
    .ed-post-card--wide .ed-post-card__body,
    .ed-post-card--small .ed-post-card__body {
        padding: 14px 16px 16px;
    }

    .ed-blog-mosaic a.ed-post-card .ed-post-card__dek,
    .ed-post-card--lead .ed-post-card__dek {
        display: none;
    }

    .ed-blog-mosaic a.ed-post-card .ed-post-card__title,
    .ed-blog-mosaic a.ed-post-card--lead .ed-post-card__title,
    .ed-blog-mosaic a.ed-post-card--mid .ed-post-card__title,
    .ed-blog-mosaic a.ed-post-card--wide .ed-post-card__title,
    .ed-blog-mosaic a.ed-post-card--small .ed-post-card__title {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        margin: 0 0 8px;
        font-size: 18px;
        line-height: 1.25;
    }

    .ed-blog-mosaic a.ed-post-card .ed-post-card__byline,
    .ed-post-card--lead .ed-post-card__byline {
        display: block;
        font-size: 12px;
        color: #8aa0a4;
    }

    .ed-blog-insert {
        display: none;
    }

    .ed-blog-pager ul.pagination,
    .ed-blog-pager ul.pagination.pagination-lg {
        gap: 16px 20px;
    }
}
