/*
 * Homepage redesign layer.
 * See doc/HOMEPAGE_STYLE_GUIDE.md before editing.
 */

body:has(.yc-home) {
    --yc-color-brand-deep: #102A3A;
    --yc-color-brand-main: #126B8F;
    --yc-color-brand-active: #168EC2;
    --yc-color-brand-bright: #1FA7F1;
    --yc-color-brand-light: #EAF6FC;
    --yc-color-weg-blue: #00579D;
    --yc-color-text-primary: #111827;
    --yc-color-text-secondary: #344054;
    --yc-color-text-muted: #667085;
    --yc-color-text-inverse: #FFFFFF;
    --yc-color-surface-page: #FFFFFF;
    --yc-color-surface-panel: #FFFFFF;
    --yc-color-surface-soft: #F5F8FB;
    --yc-color-surface-tint: #EAF6FC;
    --yc-color-surface-hero-fallback: #DCEEF8;
    --yc-color-border-subtle: #DDE8EF;
    --yc-color-border-inverse: rgba(255, 255, 255, 0.46);
    --yc-color-border-header: rgba(255, 255, 255, 0.22);
    --yc-overlay-hero-left: rgba(4, 18, 34, 0.60);
    --yc-overlay-hero-mid: rgba(4, 18, 34, 0.23);
    --yc-overlay-hero-clear: rgba(4, 18, 34, 0.02);
    --yc-font-family-base: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    --yc-font-size-nav: 16px;
    --yc-font-size-button: 14px;
    --yc-font-size-eyebrow: 13px;
    --yc-font-size-body: 18px;
    --yc-font-size-card-title: 24px;
    --yc-font-size-section-title: 42px;
    --yc-font-size-hero-title: 66px;
    --yc-line-height-tight: 1.04;
    --yc-line-height-title: 1.2;
    --yc-line-height-body: 1.7;
    --yc-font-weight-medium: 600;
    --yc-font-weight-bold: 700;
    --yc-font-weight-black: 900;
    --yc-space-1: 8px;
    --yc-space-2: 12px;
    --yc-space-3: 16px;
    --yc-space-4: 24px;
    --yc-space-5: 32px;
    --yc-space-6: 42px;
    --yc-space-7: 56px;
    --yc-space-8: 72px;
    --yc-space-9: 112px;
    --yc-container-header: 1440px;
    --yc-container-wide: 1520px;
    --yc-container-content: 1200px;
    --yc-container-finder: 1440px;
    --yc-header-height: 90px;
    --yc-header-height-mobile: 72px;
    --yc-header-search-width: 150px;
    --yc-header-search-height: 46px;
    --yc-hero-min-height: 760px;
    --yc-hero-max-height: 900px;
    --yc-hero-mobile-height: 610px;
    --yc-finder-height: 206px;
    --yc-finder-overlap: 182px;
    --yc-radius-none: 0;
    --yc-radius-panel: 4px;
    --yc-radius-dropdown: 16px;
    --yc-radius-pill: 999px;
    --yc-shadow-header: 0 10px 30px rgba(15, 35, 60, 0.08);
    --yc-shadow-panel: 0 20px 42px rgba(15, 43, 74, 0.11);
    --yc-shadow-card: 0 12px 28px rgba(17, 42, 65, 0.08);
    --yc-shadow-card-hover: 0 18px 38px rgba(17, 42, 65, 0.13);
    --yc-shadow-dropdown: 0 22px 46px rgba(15, 35, 60, 0.15);
    --yc-blue: var(--yc-color-brand-main);
    --yc-cyan: var(--yc-color-brand-bright);
    --yc-ink: var(--yc-color-text-primary);
    --yc-muted: var(--yc-color-text-muted);
    --yc-line: var(--yc-color-border-subtle);
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
}

body:has(.yc-home) .foot_top,
body:has(.yc-home) footer,
body:has(.yc-home) .maxWrap {
    width: 100% !important;
    max-width: none !important;
}

.yc-home {
    --yc-blue: var(--yc-color-brand-main);
    --yc-cyan: var(--yc-color-brand-bright);
    --yc-ink: var(--yc-color-text-primary);
    --yc-muted: var(--yc-color-text-muted);
    --yc-line: var(--yc-color-border-subtle);
    --yc-shell: var(--yc-color-surface-soft);
    overflow: hidden;
    background: var(--yc-color-surface-page);
    color: var(--yc-color-text-primary);
    font-family: var(--yc-font-family-base);
}

.yc-home a {
    text-decoration: none;
}

.yc-visual {
    position: relative;
    margin-top: 0;
    background: var(--yc-color-surface-hero-fallback);
}

.yc-visual__slides {
    position: relative;
}

.yc-visual__slide {
    position: relative;
    height: calc(100vh - 37px);
    min-height: var(--yc-hero-min-height);
    max-height: var(--yc-hero-max-height);
    background-position: center center;
    background-size: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.yc-visual__slide:not(.yc-visual__slide--active) {
    position: absolute;
    inset: 0;
    width: 100%;
}

.yc-visual__slide--active {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
}

.yc-visual__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--yc-overlay-hero-left), var(--yc-overlay-hero-mid) 48%, var(--yc-overlay-hero-clear) 74%),
        linear-gradient(180deg, rgba(2, 14, 28, 0.18), rgba(2, 14, 28, 0.02) 42%, rgba(2, 14, 28, 0.18));
}

.yc-visual__inner {
    position: relative;
    z-index: 1;
    width: min(var(--yc-container-header), calc(100% - 160px));
    height: calc(100vh - 37px);
    min-height: var(--yc-hero-min-height);
    max-height: var(--yc-hero-max-height);
    margin: 0 auto;
    padding-top: min(34vh, 310px);
    color: var(--yc-color-text-inverse);
}

.yc-visual__eyebrow {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: var(--yc-font-size-eyebrow);
    font-weight: var(--yc-font-weight-bold);
    letter-spacing: 0;
    text-transform: uppercase;
}

.yc-visual h2 {
    max-width: 620px;
    margin: 0;
    font-size: var(--yc-font-size-hero-title);
    line-height: var(--yc-line-height-tight);
    font-weight: var(--yc-font-weight-bold);
    letter-spacing: 0;
}

.yc-visual__inner > p:not(.yc-visual__eyebrow) {
    max-width: 600px;
    margin: 22px 0 34px;
    color: rgba(255, 255, 255, 0.86);
    font-size: var(--yc-font-size-body);
    line-height: var(--yc-line-height-body);
}

.yc-visual__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.yc-visual__progress {
    display: flex;
    width: min(420px, 52vw);
    gap: 10px;
    margin-top: 64px;
}

.yc-visual__progress span {
    display: block;
    flex: 1 1 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.42);
}

.yc-visual__progress .active {
    background: #fff;
}

.yc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 42px 0 18px;
    border-radius: var(--yc-radius-pill);
    font-size: var(--yc-font-size-button);
    font-weight: var(--yc-font-weight-bold);
    position: relative;
}

.yc-btn::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    line-height: 1;
}

.yc-btn--light {
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: var(--yc-color-text-inverse);
}

.yc-product-finder {
    position: relative;
    z-index: 2;
    width: min(var(--yc-container-finder), calc(100% - 160px));
    margin: calc(var(--yc-finder-overlap) * -1) auto 0;
}

.yc-product-finder__panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: var(--yc-finder-height);
    overflow: hidden;
    border: 1px solid rgba(16, 42, 58, 0.08);
    border-radius: var(--yc-radius-panel);
    background: var(--yc-color-surface-panel);
    box-shadow: var(--yc-shadow-panel);
}

.yc-product-finder__search,
.yc-product-finder__category {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 44px 108px;
}

.yc-product-finder__search label,
.yc-product-finder__category h2 {
    margin: 0 0 16px;
    color: var(--yc-color-text-primary);
    font-size: var(--yc-font-size-card-title);
    font-weight: var(--yc-font-weight-bold);
    line-height: var(--yc-line-height-title);
}

.yc-product-finder__input {
    position: relative;
    height: 48px;
    border-bottom: 2px solid var(--yc-color-text-primary);
}

.yc-product-finder__input input {
    width: 100%;
    height: 100%;
    padding: 0 86px 0 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--yc-color-text-primary);
    font-size: 17px;
}

.yc-product-finder__input button {
    position: absolute;
    right: 0;
    top: 50%;
    width: 72px;
    height: 36px;
    border: 0;
    border-radius: var(--yc-radius-pill);
    background: var(--yc-color-brand-main);
    color: var(--yc-color-text-inverse);
    font-weight: var(--yc-font-weight-bold);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.yc-product-finder__input button:hover {
    background: var(--yc-color-brand-active);
    transform: translateY(-50%) scale(1.02);
}

.yc-product-finder__category {
    border-left: 0;
    background: var(--yc-color-brand-bright);
    color: var(--yc-color-text-inverse);
}

.yc-product-finder__category h2 {
    color: var(--yc-color-text-inverse);
}

.yc-product-finder__category ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.yc-product-finder__category a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid var(--yc-color-border-inverse);
    border-radius: var(--yc-radius-pill);
    color: var(--yc-color-text-inverse);
    font-size: var(--yc-font-size-button);
    font-weight: var(--yc-font-weight-medium);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.yc-product-finder__category a:hover {
    border-color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.yc-section {
    width: min(var(--yc-container-content), calc(100% - 80px));
    margin: 0 auto;
    padding: var(--yc-space-9) 0;
}

.yc-solutions {
    padding-top: var(--yc-space-6);
    padding-bottom: var(--yc-space-8);
}

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

.yc-section__head h2 {
    margin: 0;
    color: var(--yc-color-text-primary);
    font-size: var(--yc-font-size-section-title);
    line-height: var(--yc-line-height-title);
    font-weight: var(--yc-font-weight-bold);
    letter-spacing: 0;
}

.yc-section__head p {
    max-width: 680px;
    margin: 18px auto 0;
    color: var(--yc-color-text-muted);
    font-size: 17px;
    line-height: var(--yc-line-height-body);
}

.yc-solution-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 52px;
    overflow: hidden;
    border-radius: var(--yc-radius-panel);
    box-shadow: var(--yc-shadow-card);
}

.yc-solution-card {
    position: relative;
    display: flex;
    min-height: 350px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 42px;
    overflow: hidden;
    color: var(--yc-color-text-inverse);
    background-position: center;
    background-size: cover;
    transition: transform 0.25s ease;
}

.yc-solution-card:hover {
    transform: scale(1.01);
}

.yc-solution-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(4, 22, 40, 0.68));
    transition: background 0.3s;
}

.yc-solution-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(18, 107, 143, 0.48);
    opacity: 0;
    transition: opacity 0.3s;
}

.yc-solution-card:hover::after {
    opacity: 1;
}

.yc-solution-card span,
.yc-solution-card p {
    position: relative;
    z-index: 1;
}

.yc-solution-card span {
    font-size: 28px;
    font-weight: var(--yc-font-weight-bold);
    line-height: 1.25;
}

.yc-solution-card span::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin: 18px 0 20px;
    background: var(--yc-color-text-inverse);
    transition: width 0.3s;
}

.yc-solution-card:hover span::after {
    width: 220px;
}

.yc-solution-card p {
    max-width: 360px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.65;
}

.yc-home .yc-solution-card--water {
    background-image: url("/static/upload/image/20251229/1766992117744128.webp");
}

.yc-home .yc-solution-card--energy {
    background-image: url("/static/upload/image/20251229/1766993427320163.webp");
}

.yc-home .yc-solution-card--mining {
    background-image: url("/static/upload/image/20251229/1766991723355538.webp");
}

.yc-home .yc-solution-card--automation {
    background-image: url("/static/upload/image/20260413/1776063462212805.webp");
}

.yc-specialty {
    width: 100%;
    max-width: none;
    padding-top: var(--yc-space-8);
    padding-bottom: var(--yc-space-8);
    padding-left: max(40px, calc((100% - var(--yc-container-content)) / 2));
    padding-right: max(40px, calc((100% - var(--yc-container-content)) / 2));
    background: var(--yc-color-surface-soft);
}

.yc-specialty-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 52px;
}

.yc-specialty-card {
    display: flex;
    min-height: 410px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(16, 42, 58, 0.08);
    border-radius: var(--yc-radius-panel);
    background: var(--yc-color-surface-panel);
    color: var(--yc-color-text-primary);
    box-shadow: var(--yc-shadow-card);
    transition: transform 0.25s, box-shadow 0.25s;
}

.yc-specialty-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--yc-shadow-card-hover);
}

.yc-specialty-card:not(:has(.yc-specialty-card__media img)) {
    justify-content: flex-start;
    background:
        linear-gradient(135deg, rgba(18, 107, 143, 0.08) 0 22%, transparent 22% 100%),
        linear-gradient(180deg, #FFFFFF 0%, #F7FAFC 100%);
}

.yc-specialty-card:not(:has(.yc-specialty-card__media img))::before {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin: 74px 28px 42px;
    background: var(--yc-color-brand-main);
}

.yc-home .yc-specialty-card__media {
    display: none;
    aspect-ratio: 1.25;
    background: linear-gradient(180deg, #F5F8FB 0%, #EAF1F6 100%);
}

.yc-home .yc-specialty-card__media:has(img) {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.yc-home .yc-specialty-card__media img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.yc-specialty-card h3 {
    margin: 28px 28px 10px;
    font-size: 22px;
    line-height: 1.3;
    font-weight: var(--yc-font-weight-bold);
}

.yc-specialty-card p {
    margin: 0 28px 30px;
    color: var(--yc-color-text-muted);
    font-size: 15px;
    line-height: 1.65;
}

.yc-service-news {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    min-height: 480px;
}

.yc-service-news__service {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 94px 72px 70px max(42px, calc((100vw - var(--yc-container-content)) / 2));
    overflow: hidden;
    color: var(--yc-color-text-inverse);
}

.yc-home .yc-service-news__service {
    background:
        linear-gradient(90deg, rgba(8, 27, 48, 0.86), rgba(8, 27, 48, 0.58) 44%, rgba(8, 27, 48, 0.24)),
        url("/static/upload/image/home/yicheng-local-service-scene.webp") center/cover no-repeat;
}

.yc-service-news__service div {
    max-width: 560px;
}

.yc-service-news__service span {
    display: block;
    margin-bottom: 18px;
    color: #8FD4FF;
    font-size: 15px;
    font-weight: var(--yc-font-weight-bold);
    letter-spacing: 2px;
}

.yc-service-news__service h2,
.yc-service-news__news h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1.25;
    font-weight: var(--yc-font-weight-bold);
    letter-spacing: 0;
}

.yc-service-news__service p {
    max-width: 460px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
    line-height: 1.75;
}

.yc-service-news__news {
    padding: 76px max(42px, calc((100vw - var(--yc-container-content)) / 2)) 64px 76px;
    background: #F7F9FB;
}

.yc-service-news__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.yc-service-news__top a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 18px;
    border: 1px solid var(--yc-color-border-subtle);
    border-radius: var(--yc-radius-pill);
    color: var(--yc-color-brand-main);
    font-weight: var(--yc-font-weight-bold);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.yc-service-news__top a:hover {
    border-color: var(--yc-color-brand-main);
    background: var(--yc-color-brand-main);
    color: var(--yc-color-text-inverse);
}

.yc-service-news__news ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.yc-service-news__news li {
    border-top: 1px solid var(--yc-color-border-subtle);
}

.yc-service-news__news li:last-child {
    border-bottom: 1px solid var(--yc-color-border-subtle);
}

.yc-service-news__news li a {
    display: flex;
    min-height: 72px;
    align-items: center;
    gap: 18px;
    color: var(--yc-color-text-primary);
    transition: color 0.2s ease;
}

.yc-service-news__news li a:hover span {
    color: var(--yc-color-brand-main);
}

.yc-service-news__news li span {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    font-weight: var(--yc-font-weight-bold);
}

.yc-service-news__news time {
    flex: 0 0 auto;
    color: var(--yc-color-brand-main);
    font-size: 14px;
    font-weight: var(--yc-font-weight-bold);
}

.yc-home-faq {
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
    gap: 42px;
    width: min(var(--yc-container-content), calc(100% - 80px));
    margin: 88px auto 112px;
    padding: 0;
}

.yc-home-faq__intro {
    align-self: start;
}

.yc-home-faq__intro span {
    display: block;
    margin-bottom: 14px;
    color: var(--yc-color-brand-main);
    font-size: 13px;
    font-weight: var(--yc-font-weight-bold);
    letter-spacing: 0;
    text-transform: uppercase;
}

.yc-home-faq__intro h2 {
    margin: 0;
    color: var(--yc-color-text-primary);
    font-size: 34px;
    line-height: 1.24;
    font-weight: var(--yc-font-weight-bold);
    letter-spacing: 0;
}

.yc-home-faq__intro p {
    margin: 20px 0 0;
    color: var(--yc-color-text-muted);
    font-size: 16px;
    line-height: 1.75;
}

.yc-home-faq__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.yc-home-faq__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    border: 1px solid var(--yc-color-border-subtle);
    border-radius: var(--yc-radius-pill);
    color: var(--yc-color-brand-main);
    font-size: 14px;
    font-weight: var(--yc-font-weight-bold);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.yc-home-faq__actions a:hover {
    border-color: var(--yc-color-brand-main);
    background: var(--yc-color-brand-main);
    color: var(--yc-color-text-inverse);
}

.yc-home-faq__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.yc-home-faq__list article {
    min-width: 0;
    padding: 22px;
    border: 1px solid var(--yc-color-border-subtle);
    border-radius: var(--yc-radius-panel);
    background: var(--yc-color-surface-soft);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.yc-home-faq__list article:hover {
    border-color: rgba(18, 107, 143, 0.34);
    background: #FFFFFF;
}

.yc-home-faq__list h3 {
    margin: 0;
    color: var(--yc-color-text-primary);
    font-size: 18px;
    line-height: 1.38;
    font-weight: var(--yc-font-weight-bold);
    letter-spacing: 0;
    transition: color 0.2s ease;
}

.yc-home-faq__list article:hover h3 {
    color: var(--yc-color-brand-main);
}

.yc-home-faq__list p {
    margin: 12px 0 0;
    color: var(--yc-color-text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.yc-home-faq__list p a {
    color: var(--yc-color-brand-main);
    font-weight: var(--yc-font-weight-bold);
}

.yc-home-faq__list p a:hover {
    color: var(--yc-color-brand-active);
}

body:has(.yc-home) .yc-footer-family__button::after,
body:has(.yc-home) .yc-footer-family__contact a,
body:has(.yc-home) .yc-footer-nav a:hover,
body:has(.yc-home) .yc-footer__icp a:hover {
    color: var(--yc-color-brand-main);
}

body:has(.yc-home) .mobile-footer-bar,
body:has(.yc-home) .cndns-right {
    display: none !important;
}

@media (max-width: 820px) {
    .yc-visual__slide,
    .yc-visual__inner {
        height: var(--yc-hero-mobile-height);
        min-height: var(--yc-hero-mobile-height);
    }

    .yc-visual__inner {
        width: calc(100% - 40px);
        padding-top: 158px;
    }

    .yc-visual h2 {
        font-size: 42px;
    }

    .yc-visual__inner > p:not(.yc-visual__eyebrow) {
        font-size: 17px;
    }

    .yc-visual__progress {
        width: 100%;
        margin-top: 52px;
    }

    .yc-product-finder {
        width: calc(100% - 32px);
        margin-top: -50px;
    }

    .yc-product-finder__panel,
    .yc-solution-grid,
    .yc-service-news,
    .yc-home-faq {
        grid-template-columns: 1fr;
    }

    .yc-section {
        width: calc(100% - 40px);
        padding: var(--yc-space-8) 0;
    }

    .yc-solutions {
        padding-top: var(--yc-space-7);
    }

    .yc-section__head h2 {
        font-size: 30px;
    }

    .yc-solution-card {
        min-height: 280px;
        padding: 30px;
    }

    .yc-specialty {
        padding-left: 20px;
        padding-right: 20px;
    }

    .yc-specialty-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .yc-service-news__service,
    .yc-service-news__news {
        padding: 56px 24px;
    }

    .yc-home-faq {
        width: calc(100% - 40px);
        margin: 72px auto 88px;
    }

    .yc-home-faq__intro h2 {
        font-size: 30px;
    }

    .yc-home-faq__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .yc-visual__slide {
        background-position: 44% center;
    }

    .yc-visual__shade {
        background:
            linear-gradient(90deg, rgba(3, 17, 32, 0.7), rgba(3, 17, 32, 0.36) 64%, rgba(3, 17, 32, 0.14)),
            linear-gradient(180deg, rgba(3, 17, 32, 0.18), rgba(3, 17, 32, 0.04) 45%, rgba(3, 17, 32, 0.28));
    }

    .yc-visual h2 {
        font-size: 38px;
    }

    .yc-product-finder__search,
    .yc-product-finder__category {
        padding: 26px 20px;
    }

    .yc-product-finder__input {
        height: auto;
        padding-bottom: 12px;
    }

    .yc-product-finder__input input {
        height: 44px;
        padding-right: 0;
    }

    .yc-product-finder__input button {
        position: static;
        width: 100%;
        margin-top: 12px;
        transform: none;
    }

    .yc-specialty-track {
        grid-template-columns: 1fr;
    }

    .yc-service-news__news li a {
        display: block;
        padding: 18px 0;
    }

    .yc-service-news__news li span {
        display: block;
        white-space: normal;
    }

    .yc-service-news__news time {
        display: block;
        margin-top: 8px;
    }
}
