:root {
    --ecl-ink: #101418;
    --ecl-copy: #303a42;
    --ecl-muted: #68747d;
    --ecl-line: #e0e7e5;
    --ecl-paper: #ffffff;
    --ecl-soft: #f5f8f7;
    --ecl-green: #29a55b;
    --ecl-green-dark: #15713b;
    --ecl-green-deep: #0f5d30;
    --ecl-cyan: #18b6ce;
    --ecl-navy: #111d25;
    --ecl-shadow: 0 22px 58px rgba(24, 46, 36, 0.1);
    --ecl-shadow-strong: 0 28px 70px rgba(24, 46, 36, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ecl-ink);
    background: var(--ecl-paper);
    font-family:
        Pretendard,
        "Noto Sans KR",
        "Apple SD Gothic Neo",
        "Malgun Gothic",
        Arial,
        sans-serif;
    word-break: keep-all;
    overflow-wrap: break-word;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

[hidden] {
    display: none !important;
}

.ecl-site {
    min-width: 320px;
    overflow: hidden;
}

.ecl-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.ecl-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ecl-header {
    position: relative;
    z-index: 30;
    border-bottom: 1px solid rgba(224, 231, 229, 0.9);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
}

.ecl-header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.ecl-brand {
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.ecl-brand img {
    width: 170px;
}

.ecl-brand > span {
    padding-left: 18px;
    border-left: 1px solid #d8e0dd;
    color: #7a858d;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.ecl-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #465159;
    font-size: 14px;
    font-weight: 800;
}

.ecl-nav a {
    transition: color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.ecl-nav a:hover {
    color: var(--ecl-green-dark);
}

.ecl-admin-link {
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    color: #ffffff !important;
    background: var(--ecl-ink);
}

.ecl-admin-link:hover {
    background: var(--ecl-green-dark);
    transform: translateY(-1px);
}

.ecl-hero {
    position: relative;
    padding: 84px 0 94px;
    background:
        radial-gradient(circle at 8% 8%, rgba(41, 165, 91, 0.12), transparent 29%),
        radial-gradient(circle at 94% 12%, rgba(24, 182, 206, 0.11), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f6faf8 100%);
}

.ecl-hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34%;
    height: 5px;
    background: var(--ecl-green);
}

.ecl-hero-orb {
    position: absolute;
    display: block;
    border-radius: 999px;
    pointer-events: none;
}

.ecl-hero-orb-one {
    top: 120px;
    right: -70px;
    width: 180px;
    height: 180px;
    border: 34px solid rgba(41, 165, 91, 0.09);
}

.ecl-hero-orb-two {
    left: 42%;
    bottom: 32px;
    width: 84px;
    height: 84px;
    background: rgba(24, 182, 206, 0.08);
}

.ecl-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
    align-items: center;
    gap: 74px;
}

.ecl-eyebrow,
.ecl-section-kicker {
    margin: 0 0 18px;
    color: var(--ecl-green-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.ecl-hero h1 {
    margin: 0;
    color: #141a1e;
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1.13;
    letter-spacing: -0.055em;
}

.ecl-hero h1 strong {
    position: relative;
    display: inline-block;
    color: var(--ecl-green-dark);
    font-weight: 900;
}

.ecl-hero h1 strong::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    z-index: -1;
    height: 10px;
    border-radius: 999px;
    background: rgba(41, 165, 91, 0.17);
}

.ecl-hero-description {
    max-width: 650px;
    margin: 28px 0 0;
    color: var(--ecl-muted);
    font-size: 17px;
    line-height: 1.85;
}

.ecl-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.ecl-button {
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 15px;
    font-weight: 900;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.ecl-button:hover {
    transform: translateY(-2px);
}

.ecl-button-primary {
    color: #ffffff;
    background: var(--ecl-green-dark);
    box-shadow: 0 14px 30px rgba(21, 113, 59, 0.2);
}

.ecl-button-primary:hover {
    background: var(--ecl-green-deep);
    box-shadow: 0 18px 38px rgba(21, 113, 59, 0.26);
}

.ecl-button-secondary {
    border-color: var(--ecl-line);
    color: #374149;
    background: rgba(255, 255, 255, 0.88);
}

.ecl-button-secondary:hover {
    border-color: #b9c8c0;
    background: #ffffff;
}

.ecl-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 48px 0 0;
}

.ecl-stats > div {
    padding-top: 16px;
    border-top: 1px solid #d9e3de;
}

.ecl-stats dt {
    color: #77828a;
    font-size: 12px;
    font-weight: 800;
}

.ecl-stats dd {
    margin: 8px 0 0;
    color: #1a2227;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.ecl-stats dd span {
    margin-left: 3px;
    color: #79858d;
    font-size: 13px;
}

.ecl-stats .ecl-stat-date {
    font-size: 17px;
    line-height: 1.5;
}

.ecl-brand-showcase {
    position: relative;
    min-height: 520px;
}

.ecl-brand-panel {
    position: absolute;
    z-index: 2;
    width: min(100%, 420px);
    padding: 32px 34px 36px;
    border-radius: 27px;
    overflow: hidden;
    box-shadow: var(--ecl-shadow-strong);
}

.ecl-brand-panel-label {
    display: block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.ecl-brand-panel-logo {
    min-height: 132px;
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecl-brand-panel p {
    margin: 20px 0 0;
    font-size: 14px;
    line-height: 1.7;
}

.ecl-brand-panel-enuri {
    top: 0;
    right: 0;
    border: 1px solid rgba(214, 224, 219, 0.94);
    color: #6b777f;
    background:
        linear-gradient(135deg, rgba(41, 165, 91, 0.08), transparent 48%),
        #ffffff;
}

.ecl-brand-panel-enuri .ecl-brand-panel-label {
    color: var(--ecl-green-dark);
}

.ecl-brand-panel-enuri img {
    width: 100%;
}

.ecl-brand-panel-elexa {
    left: 0;
    bottom: 0;
    color: rgba(255, 255, 255, 0.68);
    background:
        radial-gradient(circle at 94% 0%, rgba(24, 182, 206, 0.28), transparent 38%),
        var(--ecl-navy);
}

.ecl-brand-panel-elexa .ecl-brand-panel-label {
    color: var(--ecl-cyan);
}

.ecl-brand-panel-elexa img {
    width: 88%;
}

.ecl-brand-decoration {
    position: absolute;
    z-index: 1;
    display: block;
    border-radius: 999px;
}

.ecl-brand-decoration-one {
    top: 220px;
    right: -30px;
    width: 104px;
    height: 104px;
    border: 22px solid rgba(41, 165, 91, 0.11);
}

.ecl-brand-decoration-two {
    top: 242px;
    left: 82px;
    width: 68px;
    height: 68px;
    background: rgba(24, 182, 206, 0.11);
}

.ecl-catalog-section {
    padding: 110px 0 120px;
    background: #ffffff;
}

.ecl-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.ecl-section-copy {
    max-width: 690px;
}

.ecl-section-head h2,
.ecl-guide-heading h2 {
    margin: 0;
    color: #151b1f;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.22;
    letter-spacing: -0.045em;
}

.ecl-section-head p:not(.ecl-section-kicker) {
    margin: 18px 0 0;
    color: var(--ecl-muted);
    font-size: 16px;
    line-height: 1.75;
}

.ecl-search {
    position: relative;
    flex: 0 0 min(100%, 370px);
    display: block;
}

.ecl-search input {
    width: 100%;
    height: 54px;
    padding: 0 52px 0 48px;
    border: 1px solid #d8e2dd;
    border-radius: 15px;
    outline: none;
    color: #20292e;
    background: #f9fbfa;
    font-size: 14px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.ecl-search input::placeholder {
    color: #9ba6a0;
}

.ecl-search input:focus {
    border-color: var(--ecl-green);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(41, 165, 91, 0.1);
}

.ecl-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    width: 17px;
    height: 17px;
    z-index: 2;
    border: 2px solid #6d7a73;
    border-radius: 50%;
    transform: translateY(-58%);
}

.ecl-search-icon::after {
    content: "";
    position: absolute;
    right: -5px;
    bottom: -4px;
    width: 7px;
    height: 2px;
    border-radius: 999px;
    background: #6d7a73;
    transform: rotate(45deg);
}

.ecl-search button {
    position: absolute;
    right: 14px;
    top: 50%;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #65716b;
    background: #edf2ef;
    cursor: pointer;
    transform: translateY(-50%);
}

.ecl-result-meta {
    margin-top: 34px;
    color: #7b8780;
    font-size: 13px;
}

.ecl-result-meta strong {
    color: var(--ecl-green-dark);
    font-size: 15px;
}

.ecl-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.ecl-catalog-card {
    min-width: 0;
    border: 1px solid var(--ecl-line);
    border-radius: 23px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(27, 45, 35, 0.045);
    transition:
        transform 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease;
}

.ecl-catalog-card:hover {
    border-color: rgba(41, 165, 91, 0.46);
    transform: translateY(-7px);
    box-shadow: var(--ecl-shadow);
}

.ecl-cover-link,
.ecl-cover {
    display: block;
}

.ecl-cover {
    position: relative;
    aspect-ratio: 1400 / 990;
    overflow: hidden;
    background: #edf3f0;
}

.ecl-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.ecl-catalog-card:hover .ecl-cover img {
    transform: scale(1.035);
}

.ecl-cover-placeholder {
    position: absolute;
    inset: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
    background:
        radial-gradient(circle at 90% 10%, rgba(24, 182, 206, 0.32), transparent 34%),
        linear-gradient(135deg, #10241a, #132633 72%);
}

.ecl-cover-placeholder > span {
    color: #7ae0ad;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.ecl-cover-placeholder strong {
    font-size: 66px;
    line-height: 1;
    letter-spacing: -0.06em;
}

.ecl-cover-placeholder small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.ecl-cover-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 45%,
        rgba(8, 18, 13, 0.22) 100%
    );
    pointer-events: none;
}

.ecl-page-badge,
.ecl-open-badge {
    position: absolute;
    z-index: 2;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 900;
    backdrop-filter: blur(10px);
}

.ecl-page-badge {
    left: 16px;
    bottom: 16px;
    color: #ffffff;
    background: rgba(17, 29, 37, 0.76);
}

.ecl-open-badge {
    right: 16px;
    bottom: 16px;
    gap: 6px;
    color: #153b25;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.ecl-catalog-card:hover .ecl-open-badge {
    opacity: 1;
    transform: translateY(0);
}

.ecl-card-body {
    padding: 25px 25px 27px;
}

.ecl-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #8a9690;
    font-size: 11px;
    font-weight: 800;
}

.ecl-card-meta > span {
    min-height: 27px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    color: var(--ecl-green-dark);
    background: rgba(41, 165, 91, 0.1);
}

.ecl-card-body h3 {
    margin: 19px 0 0;
    color: #1a2125;
    font-size: 21px;
    line-height: 1.42;
    letter-spacing: -0.03em;
}

.ecl-card-body h3 a:hover {
    color: var(--ecl-green-dark);
}

.ecl-card-body > p {
    min-height: 50px;
    margin: 12px 0 0;
    color: var(--ecl-muted);
    font-size: 14px;
    line-height: 1.72;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ecl-card-action {
    margin-top: 23px;
    padding-top: 18px;
    border-top: 1px solid #edf1ef;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #344039;
    font-size: 13px;
    font-weight: 900;
}

.ecl-card-action span {
    color: var(--ecl-green-dark);
    font-size: 18px;
    transition: transform 0.2s ease;
}

.ecl-card-action:hover {
    color: var(--ecl-green-dark);
}

.ecl-card-action:hover span {
    transform: translateX(4px);
}

.ecl-no-results,
.ecl-empty {
    margin-top: 40px;
    padding: 72px 30px;
    border: 1px solid var(--ecl-line);
    border-radius: 24px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(41, 165, 91, 0.09), transparent 40%),
        #f9fbfa;
}

.ecl-no-results > span {
    width: 58px;
    height: 58px;
    margin: 0 auto 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ecl-green-dark);
    background: rgba(41, 165, 91, 0.1);
    font-size: 27px;
}

.ecl-no-results strong,
.ecl-empty strong {
    display: block;
    color: #20282c;
    font-size: 21px;
}

.ecl-no-results p,
.ecl-empty p {
    margin: 12px 0 0;
    color: var(--ecl-muted);
    font-size: 14px;
    line-height: 1.7;
}

.ecl-empty .ecl-button {
    margin-top: 26px;
}

.ecl-empty-icon {
    position: relative;
    width: 64px;
    height: 52px;
    margin: 0 auto 22px;
    display: block;
    border: 2px solid rgba(21, 113, 59, 0.4);
    border-radius: 8px;
    background: #ffffff;
    transform: rotate(-4deg);
}

.ecl-empty-icon::after {
    content: "";
    position: absolute;
    inset: 8px -9px -9px 8px;
    z-index: -1;
    border: 2px solid rgba(24, 182, 206, 0.35);
    border-radius: 8px;
    background: #f4fbfc;
}

.ecl-guide {
    padding: 108px 0 116px;
    background: var(--ecl-soft);
}

.ecl-guide-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    align-items: end;
    gap: 60px;
}

.ecl-guide-heading > p {
    margin: 0;
    color: var(--ecl-muted);
    font-size: 16px;
    line-height: 1.75;
}

.ecl-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 48px 0 0;
    padding: 0;
    list-style: none;
}

.ecl-guide-grid li {
    min-height: 250px;
    padding: 28px;
    border: 1px solid var(--ecl-line);
    border-radius: 22px;
    background: #ffffff;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ecl-guide-grid li:hover {
    border-color: rgba(41, 165, 91, 0.43);
    transform: translateY(-5px);
    box-shadow: 0 20px 42px rgba(36, 58, 48, 0.08);
}

.ecl-guide-grid li > span {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ecl-green-dark);
    background: rgba(41, 165, 91, 0.1);
    font-size: 13px;
    font-weight: 900;
}

.ecl-guide-grid strong {
    display: block;
    margin-top: 42px;
    color: #20272b;
    font-size: 21px;
    letter-spacing: -0.03em;
}

.ecl-guide-grid p {
    margin: 13px 0 0;
    color: var(--ecl-muted);
    font-size: 14px;
    line-height: 1.72;
}

.ecl-guide-callout {
    margin-top: 72px;
    padding: 42px 46px;
    border-radius: 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: #ffffff;
    background:
        radial-gradient(circle at 94% 0%, rgba(24, 182, 206, 0.28), transparent 34%),
        linear-gradient(135deg, #102019, #132d3a);
}

.ecl-guide-callout p {
    margin: 0 0 10px;
    color: #74dda9;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.17em;
}

.ecl-guide-callout strong {
    font-size: clamp(23px, 3vw, 34px);
    line-height: 1.35;
    letter-spacing: -0.035em;
}

.ecl-guide-callout a {
    flex: 0 0 auto;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: #13221a;
    background: #ffffff;
    font-size: 14px;
    font-weight: 900;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.ecl-guide-callout a:hover {
    background: #e9faef;
    transform: translateY(-2px);
}

.ecl-footer {
    padding: 35px 0;
    border-top: 1px solid var(--ecl-line);
    background: #ffffff;
}

.ecl-footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px 36px;
}

.ecl-footer-brand {
    display: flex;
    align-items: center;
    gap: 17px;
}

.ecl-footer-brand img {
    width: 116px;
}

.ecl-footer-brand span {
    padding-left: 17px;
    border-left: 1px solid #d8e0dd;
    color: #78847d;
    font-size: 12px;
    font-weight: 800;
}

.ecl-footer-links {
    display: flex;
    gap: 21px;
    color: #5f6b64;
    font-size: 13px;
    font-weight: 800;
}

.ecl-footer-links a:hover {
    color: var(--ecl-green-dark);
}

.ecl-footer-inner > p {
    grid-column: 1 / -1;
    margin: 0;
    color: #9aa49f;
    font-size: 12px;
}

@media (max-width: 1040px) {
    .ecl-hero-grid {
        grid-template-columns: 1fr;
        gap: 62px;
    }

    .ecl-brand-showcase {
        width: min(100%, 650px);
        min-height: 500px;
        margin: 0 auto;
    }

    .ecl-brand-panel {
        width: min(82%, 440px);
    }

    .ecl-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .ecl-container {
        width: min(100% - 32px, 1180px);
    }

    .ecl-header-inner {
        min-height: 70px;
    }

    .ecl-brand img {
        width: 132px;
    }

    .ecl-brand > span {
        display: none;
    }

    .ecl-nav {
        gap: 16px;
        font-size: 12px;
    }

    .ecl-nav a:nth-child(2),
    .ecl-nav a:nth-child(3) {
        display: none;
    }

    .ecl-admin-link {
        min-height: 36px;
        padding: 0 13px;
    }

    .ecl-hero {
        padding: 58px 0 76px;
    }

    .ecl-hero h1 {
        font-size: clamp(40px, 12.8vw, 57px);
    }

    .ecl-hero-description {
        font-size: 15px;
        line-height: 1.78;
    }

    .ecl-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ecl-button {
        width: 100%;
    }

    .ecl-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 38px;
    }

    .ecl-stats > div {
        display: grid;
        grid-template-columns: 120px 1fr;
        align-items: center;
        gap: 12px;
    }

    .ecl-stats dd {
        margin: 0;
        text-align: right;
        font-size: 20px;
    }

    .ecl-stats .ecl-stat-date {
        font-size: 15px;
    }

    .ecl-brand-showcase {
        min-height: auto;
        display: grid;
        gap: 16px;
    }

    .ecl-brand-panel {
        position: relative;
        inset: auto;
        width: 100%;
        padding: 27px 24px 29px;
        border-radius: 22px;
    }

    .ecl-brand-panel-logo {
        min-height: 104px;
    }

    .ecl-brand-decoration {
        display: none;
    }

    .ecl-catalog-section,
    .ecl-guide {
        padding: 80px 0 86px;
    }

    .ecl-section-head,
    .ecl-guide-heading {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 28px;
    }

    .ecl-section-head h2,
    .ecl-guide-heading h2 {
        font-size: 36px;
    }

    .ecl-search {
        flex-basis: auto;
        width: 100%;
    }

    .ecl-result-meta {
        margin-top: 24px;
    }

    .ecl-catalog-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .ecl-card-body {
        padding: 22px;
    }

    .ecl-card-body > p {
        min-height: auto;
    }

    .ecl-open-badge {
        opacity: 1;
        transform: none;
    }

    .ecl-guide-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 36px;
    }

    .ecl-guide-grid li {
        min-height: auto;
        padding: 24px;
    }

    .ecl-guide-grid strong {
        margin-top: 28px;
    }

    .ecl-guide-callout {
        margin-top: 50px;
        padding: 33px 25px;
        align-items: stretch;
        flex-direction: column;
    }

    .ecl-guide-callout a {
        width: 100%;
        justify-content: space-between;
    }

    .ecl-footer-inner {
        grid-template-columns: 1fr;
    }

    .ecl-footer-links {
        flex-wrap: wrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
