.panel {
    background: var(--surface);
    border: 1px solid rgba(17, 24, 39, 0.06);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.rank-panel,
.policy-card {
    padding: 18px 16px;
}

.editorial-panel {
    padding: 20px 18px;
}

.editorial-panel__title {
    margin: 0;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.editorial-panel__text {
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 1.75;
    color: var(--text-sub);
}

.hero-banner {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 5;
    min-height: 118px;
    max-height: 160px;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(135deg, #111827 0%, #1f2a44 52%, #32456f 100%);
    box-shadow: 0 18px 38px rgba(17, 24, 39, 0.16);
}

.hero-banner__media,
.hero-banner__media img,
.hero-banner__fallback {
    width: 100%;
    height: 100%;
}

.hero-banner__media img {
    object-fit: cover;
}

.hero-banner__fallback {
    background:
        radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.24), transparent 24%),
        radial-gradient(circle at 84% 28%, rgba(110, 168, 255, 0.34), transparent 18%),
        linear-gradient(135deg, #182235 0%, #243553 48%, #32517d 100%);
}

.service-card {
    background: var(--surface);
    border: 1px solid rgba(17, 24, 39, 0.06);
    border-radius: 22px;
    box-shadow: var(--shadow);
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        border-color var(--transition-fast);
}

.service-card--row {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px;
}

.service-card:hover,
.rank-item:hover,
.policy-card:hover {
    transform: translateY(-1px);
}

.service-card__thumb {
    width: 76px;
    height: 76px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    background: #f8fafc;
}

.service-card__thumb-link {
    display: block;
}

.service-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card__body {
    min-width: 0;
}

.meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 7px;
    min-width: 0;
}

.meta-row__left {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 7px;
    min-width: 0;
    overflow: hidden;
}

.meta-category {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-sub);
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.badge--hot {
    background: #fff1f2;
    border-color: #fecdd3;
    color: #e11d48;
}

.badge--new {
    background: #ecfeff;
    border-color: #a5f3fc;
    color: #0f766e;
}

.badge--recommend {
    background: #eef2ff;
    border-color: #c7d2fe;
    color: #4338ca;
}

.badge--event {
    background: #fff7ed;
    border-color: #fed7aa;
    color: #c2410c;
}

.badge--open {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1d4ed8;
}

.badge--neutral {
    background: #f3f4f6;
    border-color: #e5e7eb;
    color: #4b5563;
}

.service-card__title {
    margin: 8px 0 0;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.service-card__title-link {
    display: inline-block;
}

.service-card__desc {
    margin: 6px 0 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-sub);
}

.service-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
}

.service-card__sub {
    font-size: 11px;
    font-weight: 800;
    color: #6b7280;
}

.service-card__sub--meta {
    margin-left: auto;
    text-align: right;
    white-space: nowrap;
    flex: 0 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-card__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.primary-btn,
.secondary-btn,
.detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 94px;
    height: 36px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
}

.primary-btn {
    background: linear-gradient(135deg, #5b5cf0, #6a64ff);
    color: #fff;
}

.secondary-btn {
    background: #f8fafc;
    border: 1px solid var(--line);
    color: #111827;
}

.detail-btn {
    min-width: 74px;
    background: transparent;
    border: 1px solid rgba(17, 24, 39, 0.08);
    color: #475467;
}

.service-copy-card__media {
    margin-top: 14px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.06);
    background: #f8fafc;
}

.service-copy-card__media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-copy-card__list--ordered {
    list-style: decimal;
}

.service-faq-list {
    display: grid;
    gap: 12px;
}

.service-faq-item {
    border-radius: 16px;
    background: #fbfcfe;
    border: 1px solid rgba(17, 24, 39, 0.06);
    overflow: hidden;
}

.service-faq-item__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    cursor: pointer;
    list-style: none;
}

.service-faq-item__summary::-webkit-details-marker {
    display: none;
}

.service-faq-item__question {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 800;
    color: #111827;
}

.service-faq-item__toggle {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.service-faq-item__toggle::before,
.service-faq-item__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: #6b7280;
    border-radius: 999px;
    transform: translate(-50%, -50%);
}

.service-faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform var(--transition-fast);
}

.service-faq-item[open] .service-faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.service-faq-item__body {
    padding: 0 16px 16px;
    border-top: 1px solid rgba(17, 24, 39, 0.06);
}

.service-faq-item__answer {
    margin: 12px 0 0;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-sub);
    white-space: pre-line;
}

.filter-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 2px 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.filter-row::-webkit-scrollbar {
    display: none;
}

.filter-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    color: #4b5563;
    font-size: 12px;
    font-weight: 800;
    transition:
        transform var(--transition-fast),
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast);
}

.filter-chip.is-active {
    background: var(--primary-soft);
    border-color: #d9dcff;
    color: var(--primary);
}

.empty-state {
    margin-top: 12px;
    padding: 18px 14px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid var(--line);
    text-align: center;
    color: var(--text-sub);
    font-size: 13px;
    font-weight: 700;
}

.rank-panel {
    margin-top: 12px;
}

.rank-panel__title {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111827;
}

.rank-list {
    display: grid;
    gap: 8px;
    margin-top: 10px;
}

.rank-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 48px;
    padding: 0 13px;
    border-radius: 14px;
    border: 1px solid #dbe2ea;
    background: #fcfdff;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.rank-item__name {
    font-size: 14px;
    font-weight: 800;
    color: #111827;
}

.rank-item__value {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
}

.support-summary-card {
    position: relative;
    overflow: hidden;
    margin-top: 12px;
    padding: 18px 16px;
    border-radius: 22px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fbff 52%, #f1f6ff 100%);
    border: 1px solid rgba(56, 139, 253, 0.12);
    box-shadow: 0 12px 28px rgba(56, 139, 253, 0.08);
}

.support-summary-card::after {
    content: "";
    position: absolute;
    top: -34px;
    right: -34px;
    width: 108px;
    height: 108px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(56, 139, 253, 0.16), rgba(56, 139, 253, 0));
}

.support-summary-card__eyebrow,
.policy-meta-card__title {
    position: relative;
    z-index: 1;
    font-size: 11px;
    font-weight: 800;
    color: #1565d8;
}

.support-summary-card__title {
    position: relative;
    z-index: 1;
    margin: 8px 0 0;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111827;
}

.support-summary-card__email {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 38px;
    margin-top: 10px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(56, 139, 253, 0.1);
    color: #1565d8;
    font-size: 13px;
    font-weight: 800;
}

.support-summary-card__desc {
    position: relative;
    z-index: 1;
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.65;
    color: var(--text-sub);
}

.notice-board-head__desc {
    margin: 4px 0 0;
    font-size: 11px;
    line-height: 1.55;
    color: #667085;
}

.notice-board {
    border-top: 2px solid #111827;
    border-bottom: 1px solid #dbe2ea;
    background: #fff;
}

.notice-board__table {
    display: block;
}

.notice-board__header {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border-bottom: 1px solid #e5e7eb;
    background: #f8fafc;
}

.notice-board__col {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #6b7280;
}

.notice-row {
    border-bottom: 1px solid #eef2f6;
    background: #fff;
}

.notice-row[open] {
    background: #fcfdff;
}

.notice-item__summary {
    list-style: none;
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 12px;
    cursor: pointer;
}

.notice-item__summary::-webkit-details-marker {
    display: none;
}

.notice-item__state {
    display: inline-flex;
    align-items: center;
}

.notice-item__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    color: #667085;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.notice-item__label--pinned {
    background: #f8fbff;
    border-color: #c9d8ea;
    color: #24508a;
}

.notice-item__summary-main {
    min-width: 0;
}

.notice-item__title {
    display: block;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #111827;
    word-break: keep-all;
}

.notice-item__toggle {
    flex: 0 0 auto;
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #dbe2ea;
    transition:
        transform var(--transition-fast),
        background-color var(--transition-fast),
        border-color var(--transition-fast);
}

.notice-item__toggle::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid #64748b;
    border-bottom: 1.5px solid #64748b;
    transform: rotate(45deg);
}

.notice-row[open] .notice-item__toggle {
    background: #f8fbff;
    border-color: #c9d8ea;
}

.notice-row[open] .notice-item__toggle::before {
    top: 7px;
    transform: rotate(-135deg);
    border-color: #24508a;
}

.notice-item__content {
    padding: 0 12px 12px 80px;
    border-top: 1px solid #f1f5f9;
    text-align: left;
}

.notice-item__meta {
    margin: 9px 0 0;
    font-size: 11px;
    line-height: 1.35;
    font-weight: 500;
    color: #98a2b3;
}

.notice-item__desc {
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.7;
    color: #4b5563;
    text-align: left;
    white-space: pre-line;
}

.notice-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.notice-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #667085;
    font-size: 12px;
    font-weight: 700;
}

.notice-pagination__link.is-active {
    border-color: #c9d8ea;
    background: #f8fbff;
    color: #24508a;
}

@media (max-width: 640px) {
    .notice-board__header {
        display: none;
    }

    .notice-item__summary {
        grid-template-columns: 44px minmax(0, 1fr) 20px;
        gap: 8px;
        min-height: 46px;
        padding: 4px 12px;
    }

    .notice-item__state {
        grid-column: 1;
        grid-row: 1;
        align-self: center;
        justify-self: start;
    }

    .notice-item__summary-main {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
        display: block;
        min-height: 0;
    }

    .notice-item__title {
        font-size: 13px;
        line-height: 1.3;
    }

    .notice-item__toggle {
        grid-column: 3;
        grid-row: 1;
        align-self: center;
    }

    .notice-item__content {
        padding: 0 12px 10px;
    }

    .notice-item__meta {
        margin-top: 7px;
        font-size: 10px;
    }

    .notice-item__desc {
        margin-top: 7px;
        font-size: 12px;
        line-height: 1.65;
    }

    .notice-item__label {
        min-width: 32px;
        min-height: 22px;
        padding: 0 7px;
        font-size: 9px;
    }

    .notice-pagination {
        gap: 6px;
        margin-top: 12px;
    }

    .notice-pagination__link {
        min-width: 32px;
        height: 32px;
        font-size: 11px;
    }
}

.service-detail-page {
    min-height: 100vh;
    padding: 18px 12px 40px;
}

.service-detail-shell {
    max-width: var(--max-width);
    margin: 0 auto;
}

.service-hero {
    display: grid;
    grid-template-columns: minmax(118px, 144px) minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 18px 16px;
    border-radius: 26px;
}

.service-hero__media-block {
    min-width: 0;
}

.service-hero__media {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(180deg, #f8fafc, #eef2ff);
    border: 1px solid rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.service-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-hero__body {
    min-width: 0;
}

.service-hero__title {
    margin: 10px 0 0;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.service-hero__desc {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.72;
    color: #334155;
}

.service-hero__tagline {
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 700;
    color: var(--primary);
}

.service-hero__tagline--media {
    margin: 0 0 10px;
    font-size: 12px;
}

.service-hero__actions,
.service-copy-card__cta {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 16px;
}

.service-hero__actions .primary-btn,
.service-hero__actions .detail-btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    white-space: nowrap;
    padding-left: 12px;
    padding-right: 12px;
}

.service-copy-card,
.service-related-card {
    margin-top: 12px;
    padding: 18px 16px;
}

.service-copy-card__title {
    margin: 0;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.service-copy-card__text {
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 1.7;
    color: #475467;
    white-space: pre-line;
}

.service-screenshot-carousel {
    margin-top: 14px;
}

.service-screenshot-carousel__viewport {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(72%, 248px);
    gap: 14px;
    overflow-x: auto;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.service-screenshot-carousel__viewport::-webkit-scrollbar {
    display: none;
}

.service-screenshot-carousel__slide {
    margin: 0;
    scroll-snap-align: start;
    aspect-ratio: 27 / 40;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, #eff6ff, #dbeafe);
    border: 1px solid rgba(37, 99, 235, 0.12);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.10);
}

.service-screenshot-carousel__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-screenshot-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.service-screenshot-carousel__arrow {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: #fff;
    color: #0f172a;
    font-size: 22px;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.service-screenshot-carousel__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.service-screenshot-carousel__dot {
    width: 8px;
    height: 8px;
    border: 0;
    padding: 0;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.55);
    transition:
        width var(--transition-fast),
        background-color var(--transition-fast);
}

.service-screenshot-carousel__dot.is-active {
    width: 22px;
    background: var(--primary);
}

.service-copy-card__list {
    margin: 12px 0 0;
    padding-left: 18px;
    color: #475467;
}

.service-copy-card__list li {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.65;
}

.service-related-list {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.service-related-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 50px;
    padding: 0 14px;
    border-radius: 16px;
    background: #fcfdff;
    border: 1px solid rgba(17, 24, 39, 0.06);
}

.service-related-item__name {
    font-size: 14px;
    font-weight: 800;
    color: #111827;
}

.service-related-item__meta {
    font-size: 12px;
    font-weight: 700;
    color: #667085;
}

.policy-page {
    min-height: 100vh;
    padding: 18px 12px 40px;
}

.policy-shell {
    max-width: var(--max-width);
    margin: 0 auto;
}

.policy-topbar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.policy-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: var(--shadow);
    font-weight: 800;
}

.policy-title-block {
    min-width: 0;
}

.policy-page-title {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.policy-page-desc {
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-sub);
}

.policy-card {
    display: block;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.05);
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        border-color var(--transition-fast);
}

.policy-card:hover {
    border-color: rgba(91, 92, 240, 0.18);
    box-shadow: 0 16px 30px rgba(91, 92, 240, 0.08);
}

.policy-section + .policy-section {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #edf2f7;
}

.policy-section h2 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.policy-section p,
.policy-section li {
    font-size: 14px;
    line-height: 1.75;
    color: #334155;
}

.policy-section ul {
    margin: 0;
    padding-left: 18px;
}

.policy-meta-card {
    margin-top: 14px;
    padding: 16px 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 255, 0.96));
    border: 1px solid rgba(91, 92, 240, 0.10);
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.06);
}

.policy-meta-card__text {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-sub);
}

.policy-card:focus-visible,
.service-card:focus-visible,
.rank-item:focus-visible,
.filter-chip:focus-visible {
    outline: 2px solid rgba(91, 92, 240, 0.45);
    outline-offset: 3px;
}

@media (max-width: 767px) {
    .hero-banner {
        aspect-ratio: 16 / 6.6;
        min-height: 96px;
        max-height: 126px;
    }

    .service-card--row {
        grid-template-columns: 70px 1fr;
    }

    .service-card__thumb {
        width: 70px;
        height: 70px;
    }

    .support-summary-card {
        padding: 17px 15px;
    }

    .service-card__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .service-card__actions {
        width: 100%;
    }

    .meta-row {
        gap: 6px;
    }

    .meta-row__left {
        gap: 6px;
        flex: 1 1 auto;
    }

    .service-card__sub--meta {
        margin-left: auto;
        width: auto;
        max-width: 46%;
        text-align: right;
        white-space: nowrap;
        font-size: 10px;
    }

    .service-card__actions .primary-btn,
    .service-card__actions .secondary-btn,
    .service-card__actions .detail-btn {
        flex: 1 1 0;
        min-width: 0;
    }

    .service-hero__title {
        font-size: 24px;
    }

    .service-hero {
        grid-template-columns: 116px minmax(0, 1fr);
        gap: 14px;
    }

    .service-hero__desc {
        font-size: 13px;
        line-height: 1.64;
    }

    .service-hero__actions {
        gap: 8px;
    }

    .service-hero__actions .primary-btn,
    .service-hero__actions .detail-btn {
        font-size: 11px;
        min-height: 42px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .service-hero__tagline--media {
        margin-bottom: 8px;
        font-size: 11px;
    }

    .service-screenshot-carousel__viewport {
        grid-auto-columns: min(78%, 224px);
    }
}

@media (min-width: 768px) {
    .service-hero {
        grid-template-columns: 220px 1fr;
    }

    .notice-item__summary {
        grid-template-columns: 82px minmax(0, 1fr) 110px 24px;
    }

    .notice-item__content {
        padding-left: 108px;
    }

    .service-screenshot-carousel__viewport {
        grid-auto-columns: min(31%, 260px);
    }
}
