:root {
    --white: #ffffff;
    --gray: #f0f0f0;
    --gray-dark: #d8d8d8;
    --black: #1a1a1a;
    --gray-mid: #6f6f6f;
    --line: #e6e6e6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.8;
    letter-spacing: 0.02em;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container { width: min(1200px, 92%); margin: 0 auto; }

/* 画廊风格：无边框、无圆角、大留白 */

/* ========== 导航 ========== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: transparent;
    transition: all .45s;
    padding: 0;
}
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}
.header-inner {
    width: min(1400px, 96%);
    margin: 0 auto;
    padding: 34px 0 26px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    transition: padding .45s;
}
.site-header.scrolled .header-inner { padding: 18px 0 16px; }

.logo {
    text-decoration: none;
    color: var(--black);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    font-family: Georgia, "Times New Roman", serif;
}
.logo span {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--gray-mid);
    font-family: "PingFang SC", sans-serif;
    margin-left: 8px;
}

.main-nav { display: flex; gap: 44px; }
.main-nav a {
    text-decoration: none;
    color: var(--black);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 4px;
    transition: opacity .3s;
}
.main-nav a::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--black);
    transition: width .35s;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a:hover { opacity: 0.6; }

.nav-cta {
    text-decoration: none;
    color: var(--black);
    font-size: 15px;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--black);
    padding-bottom: 4px;
    transition: opacity .3s;
}
.nav-cta:hover { opacity: 0.6; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}
.nav-toggle span { width: 28px; height: 1.5px; background: var(--black); transition: all .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ========== 巨型 Hero ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
    background: var(--white);
}
.hero-content { padding: 0 20px; }
.hero-index {
    font-size: 13px;
    letter-spacing: 6px;
    color: var(--gray-mid);
    margin-bottom: 40px;
}
.hero-title {
    font-size: clamp(90px, 20vw, 280px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    font-family: Georgia, "Times New Roman", serif;
    user-select: none;
}
.hero-title em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 2px var(--black);
}
.hero-sub {
    font-size: 16px;
    color: var(--gray-mid);
    margin: 44px 0 60px;
    letter-spacing: 4px;
    line-height: 2.2;
}
.hero-link {
    text-decoration: none;
    color: var(--black);
    font-size: 14px;
    letter-spacing: 4px;
    border-bottom: 1px solid var(--black);
    padding-bottom: 8px;
    transition: opacity .3s;
}
.hero-link:hover { opacity: 0.5; }

/* ========== 极简宣言 ========== */
.manifesto {
    padding: 240px 6%;
    border-top: 1px solid var(--line);
    background: var(--white);
    position: relative;
}
.manifesto-text {
    font-size: clamp(40px, 7vw, 88px);
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 0.02em;
}
.manifesto-text b {
    font-weight: 900;
    border-bottom: 2px solid var(--black);
    padding-bottom: 4px;
}
.manifesto-meta {
    position: absolute;
    right: 6%;
    bottom: 60px;
    text-align: right;
    color: var(--gray-mid);
    font-size: 13px;
    letter-spacing: 3px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ========== 作品画廊 ========== */
.gallery { background: var(--white); }
.gallery-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: center;
    padding: 10vh 6%;
    gap: 8%;
    border-top: 1px solid var(--line);
}
.gallery-item.gallery-right {
    direction: rtl;
}
.gallery-item.gallery-right > * { direction: ltr; }
.gallery-fig { width: 100%; overflow: hidden; }
.gallery-fig img {
    width: 100%;
    height: 68vh;
    object-fit: cover;
    filter: grayscale(15%);
    transition: transform 1.2s ease, filter 1s;
}
.gallery-fig:hover img { transform: scale(1.04); filter: grayscale(0%); }
.gallery-caption {
    align-self: start;
    padding-top: 40px;
}
.g-num {
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--gray-mid);
    margin-bottom: 30px;
}
.gallery-caption h3 {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    margin-bottom: 26px;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.1;
}
.gallery-caption p:last-child {
    font-size: 15px;
    color: var(--gray-mid);
    letter-spacing: 2px;
}

/* ========== 设计理念 ========== */
.philosophy {
    padding: 200px 6%;
    background: var(--gray);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 12%;
    align-items: start;
}
.phil-title {
    font-size: clamp(60px, 10vw, 140px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.02em;
    font-family: Georgia, "Times New Roman", serif;
}
.phil-grid {
    display: grid;
    gap: 90px;
    padding-top: 20px;
}
.phil-num {
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--gray-mid);
    margin-bottom: 16px;
}
.phil-item h3 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 18px;
}
.phil-item p {
    color: var(--gray-mid);
    font-size: 16px;
    line-height: 2;
    max-width: 420px;
}

/* ========== 联系区 ========== */
.contact-mini {
    padding: 180px 6%;
    text-align: center;
    background: var(--white);
    border-top: 1px solid var(--line);
}
.contact-mini-label {
    font-size: 13px;
    letter-spacing: 6px;
    color: var(--gray-mid);
    margin-bottom: 60px;
}
.contact-mini-link {
    display: inline-block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 1.1;
    text-decoration: none;
    color: var(--black);
    transition: color .3s;
}
.contact-mini-link:hover { color: var(--gray-mid); }
.contact-mini-addr {
    margin-top: 60px;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--gray-mid);
}

/* ========== 页脚 ========== */
.site-footer {
    padding: 80px 0 30px;
    border-top: 1px solid var(--line);
    background: var(--white);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.4fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--line);
    align-items: start;
}
.footer-brand h3 { font-size: 24px; font-weight: 900; margin-bottom: 10px; }
.footer-brand p { font-size: 12px; letter-spacing: 4px; color: var(--gray-mid); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { text-decoration: none; color: var(--black); font-size: 15px; letter-spacing: 2px; transition: opacity .3s; }
.footer-links a:hover { opacity: 0.5; }
.footer-contact p { font-size: 15px; line-height: 2.2; color: var(--black); }
.copyright {
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--gray-mid);
}

/* ========== 子页面通用 ========== */
.page-hero {
    padding: 220px 0 160px;
    text-align: center;
    border-bottom: 1px solid var(--line);
}
.page-hero h1 {
    font-size: clamp(56px, 10vw, 140px);
    font-weight: 900;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1;
    letter-spacing: -0.02em;
}
.page-hero .ph-en { font-size: 14px; letter-spacing: 8px; color: var(--gray-mid); margin-top: 30px; }
.page-hero .breadcrumb { margin-top: 40px; font-size: 13px; letter-spacing: 2px; color: var(--gray-mid); }
.page-hero .breadcrumb a { color: var(--black); text-decoration: none; border-bottom: 1px solid var(--gray-dark); }

.page-section { padding: 160px 6%; }
.page-section.alt { background: var(--gray); }
.page-section h2 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    font-family: Georgia, "Times New Roman", serif;
    margin-bottom: 60px;
}

/* 关于页 */
.statement {
    font-size: clamp(24px, 3.6vw, 40px);
    font-weight: 600;
    line-height: 1.9;
    max-width: 980px;
}
.statement b { font-weight: 900; }
.about-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-cols img { width: 100%; height: 70vh; object-fit: cover; filter: grayscale(20%); }
.about-cols p { font-size: 16px; color: var(--gray-mid); line-height: 2.2; margin-bottom: 24px; }
.about-cols h3 { font-size: 28px; margin-bottom: 22px; }

.team-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.team-person img { width: 100%; height: 480px; object-fit: cover; filter: grayscale(100%); transition: filter .6s; }
.team-person:hover img { filter: grayscale(0%); }
.team-person h3 { font-size: 22px; margin-top: 24px; }
.team-person p { font-size: 14px; letter-spacing: 2px; color: var(--gray-mid); margin-top: 8px; }

/* 产品页 */
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line); }
.service-cell {
    background: var(--white);
    padding: 70px 60px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background .4s;
}
.service-cell:hover { background: var(--gray); }
.service-cell .s-top { display: flex; justify-content: space-between; align-items: baseline; }
.service-cell .s-index { font-size: 13px; letter-spacing: 4px; color: var(--gray-mid); }
.service-cell h3 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin: 40px 0 20px; font-family: Georgia, "Times New Roman", serif; }
.service-cell p { color: var(--gray-mid); font-size: 15px; line-height: 2; }
.service-cell .s-price { font-size: 15px; letter-spacing: 2px; margin-top: 30px; }
.service-cell img { width: 100%; height: 260px; object-fit: cover; margin-top: 40px; }

/* 新闻页 */
.news-list { max-width: 1080px; margin: 0 auto; }
.news-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 60px;
    padding: 70px 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
    transition: padding-left .4s;
}
.news-row:hover { padding-left: 20px; }
.news-row .n-date { font-size: 13px; letter-spacing: 3px; color: var(--gray-mid); }
.news-row h3 { font-size: clamp(24px, 3.4vw, 40px); font-weight: 700; margin-bottom: 14px; transition: opacity .3s; }
.news-row:hover h3 { opacity: 0.55; }
.news-row p { color: var(--gray-mid); font-size: 15px; max-width: 720px; }
.news-row img { width: 100%; height: 200px; object-fit: cover; grid-column: 3; }

/* 联系页 */
.contact-page { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-lines { display: flex; flex-direction: column; gap: 40px; }
.contact-lines .c-item h3 { font-size: 13px; letter-spacing: 4px; color: var(--gray-mid); margin-bottom: 12px; }
.contact-lines .c-item p { font-size: 22px; line-height: 1.8; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--gray-dark);
    background: transparent;
    padding: 16px 0;
    font-size: 16px;
    font-family: inherit;
    color: var(--black);
    transition: border-color .3s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--black);
}
.contact-form .form-group { margin-bottom: 36px; }
.contact-form label { font-size: 13px; letter-spacing: 3px; color: var(--gray-mid); display: block; margin-bottom: 4px; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-group .error-msg { color: #c0392b; font-size: 13px; margin-top: 8px; display: none; }
.form-group.invalid input, .form-group.invalid textarea, .form-group.invalid select { border-color: #c0392b; }
.form-group.invalid .error-msg { display: block; }
.form-success { display: none; background: var(--gray); padding: 20px 24px; margin-bottom: 30px; font-size: 15px; }
.contact-submit {
    background: var(--black);
    color: #fff;
    border: none;
    padding: 18px 60px;
    font-size: 15px;
    letter-spacing: 3px;
    cursor: pointer;
    transition: opacity .3s;
}
.contact-submit:hover { opacity: 0.8; }

/* ========== 滚动动画 ========== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ========== 响应式 ========== */
@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 120px 40px 40px;
        gap: 24px;
        transition: right .45s ease;
        border-left: 1px solid var(--line);
    }
    .main-nav.open { right: 0; }
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }
    .gallery-item { grid-template-columns: 1fr; gap: 40px; padding: 80px 6%; }
    .gallery-fig img { height: 50vh; }
    .philosophy { grid-template-columns: 1fr; gap: 60px; }
    .about-cols, .contact-page { grid-template-columns: 1fr; }
    .team-list, .service-list { grid-template-columns: 1fr; }
    .news-row { grid-template-columns: 1fr; gap: 20px; }
    .news-row img { grid-column: auto; height: 220px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .manifesto { padding: 140px 8%; }
    .header-inner { padding: 20px 0; }
}

/* ========== CMS / VE 辅助规则 ========== */
:root {
    --font: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
}
body { font-family: var(--font); }

/* 链接化标题去下划线/蓝色 */
.service-cell h3 a,
.news-row h3 a,
.gallery-caption h3 a { color: inherit; text-decoration: none; }
.service-cell h3 a:hover { opacity: .6; }
.contact-mini-link { color: var(--black); }

/* 通用淡入动画（与源站 .reveal 并存） */
.fade-in { opacity: 0; transform: translateY(40px); transition: opacity 1s ease, transform 1s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* 服务/新闻筛选标签 */
.cat-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin: 0 0 70px; }
.cat-tab {
    background: none;
    border: 1px solid var(--black);
    color: var(--black);
    font-family: inherit;
    font-size: 14px;
    letter-spacing: 3px;
    padding: 10px 26px;
    cursor: pointer;
    transition: background .3s, color .3s;
}
.cat-tab:hover { background: var(--gray); }
.cat-tab.active { background: var(--black); color: #fff; }

/* 统计数字 */
.stat-num { font-family: Georgia, "Times New Roman", serif; font-size: clamp(48px, 6vw, 88px); font-weight: 900; line-height: 1; display: inline-block; }
.stat-label { display: block; font-size: 14px; letter-spacing: 3px; color: var(--gray-mid); margin-top: 14px; }

/* 首页板块通用 */
.home-section { padding: 160px 6%; }
.section-head { margin-bottom: 70px; }
.section-head .g-num { margin-bottom: 20px; }
.section-head h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 800; font-family: Georgia, "Times New Roman", serif; margin-bottom: 18px; }
.section-head p { color: var(--gray-mid); font-size: 15px; letter-spacing: 2px; }

/* 首页服务卡片网格 */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line); }
.service-grid .service-cell { margin: 0; }

/* 统计条 */
.stats-band { padding: 120px 6%; background: var(--gray); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 60px; text-align: center; }
.stats-grid .stat-suffix { font-family: Georgia, serif; font-size: clamp(30px, 4vw, 48px); font-weight: 900; }

/* 荣誉资质 */
.honor-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.honor-card { background: var(--white); border: 1px solid var(--line); padding: 40px; transition: background .4s; }
.honor-card:hover { background: var(--gray); }
.honor-card img { width: 100%; height: 220px; object-fit: cover; margin-bottom: 22px; filter: grayscale(20%); }
.honor-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.honor-card .h-date { font-size: 12px; letter-spacing: 3px; color: var(--gray-mid); margin-bottom: 14px; }
.honor-card p { color: var(--gray-mid); font-size: 15px; line-height: 2; }

/* 详情页 / CMS 内容 */
.cms-section { padding: 120px 6%; }
.cms-detail { max-width: 900px; margin: 0 auto; }
.cms-detail > img { margin: 0 auto 12px; max-width: 100%; }
.cms-detail h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 800; font-family: Georgia, "Times New Roman", serif; margin: 18px 0; }
.cms-detail .lead { color: var(--gray-mid); margin-bottom: 20px; font-size: 16px; line-height: 2; }
.cms-detail .news-date-label { display: inline-block; font-size: 13px; letter-spacing: 3px; color: var(--gray-mid); border-bottom: 1px solid var(--black); padding-bottom: 4px; margin-bottom: 18px; }
.cms-content h2 { font-size: 1.6rem; margin: 26px 0 12px; color: var(--black); }
.cms-content h3 { font-size: 1.3rem; margin: 22px 0 10px; color: var(--black); }
.cms-content p, .cms-content ul, .cms-content li { color: var(--gray-mid); margin-bottom: 16px; line-height: 2; }
.cms-content ul { padding-left: 20px; list-style: disc; }
.cms-content img { max-width: 100%; margin: 16px 0; }
.cms-content a { color: var(--black); }
.cms-back { display: inline-block; color: var(--gray-mid); font-size: 14px; letter-spacing: 2px; margin-bottom: 24px; text-decoration: none; border-bottom: 1px solid var(--gray-dark); }
.cms-back:hover { opacity: .6; }
.spec-list { list-style: none; padding: 0; margin: 0; }
.spec-list li { color: var(--gray-mid); padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px; letter-spacing: 1px; }
.spec-list li b { color: var(--black); }
.cms-pager { padding: 30px 0 0; text-align: center; }
.cms-pager .pagination { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.cms-pager .page-link { padding: 10px 16px; border: 1px solid var(--line); color: var(--black); font-size: 14px; transition: .3s; display: inline-block; text-decoration: none; }
.cms-pager .page-link:hover { border-color: var(--black); }
.cms-pager .page-item.active .page-link { background: var(--black); border-color: var(--black); color: #fff; }
.cms-pager .page-item.disabled .page-link { opacity: .5; pointer-events: none; }
.form-alert-err { background: var(--gray); border: 1px solid var(--gray-dark); padding: 16px 20px; margin-bottom: 24px; font-size: 15px; }
.form-alert-err li { color: var(--black); }
.form-success.show { display: block; }
.cv-invalid { border-color: #c0392b !important; }

/* 统计条文字 */
.stats-grid p { color: var(--gray-mid); font-size: 14px; letter-spacing: 1px; margin-top: 10px; }

/* 发展历程 */
.milestone-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.milestone-item { border-top: 1px solid var(--black); padding-top: 24px; }
.milestone-item b { font-family: Georgia, "Times New Roman", serif; font-size: clamp(32px, 4vw, 48px); font-weight: 900; }
.milestone-item h3 { font-size: 20px; font-weight: 800; margin: 14px 0 10px; }
.milestone-item p { color: var(--gray-mid); font-size: 14px; line-height: 2; }

/* 企业文化 */
.culture-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.culture-item { background: var(--gray); padding: 40px 32px; transition: background .4s; }
.culture-item:hover { background: var(--gray-dark); }
.culture-item .phil-num { margin-bottom: 16px; }
.culture-item h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.culture-item p { color: var(--gray-mid); font-size: 15px; line-height: 2; }

/* 新增网格响应式 */
@media (max-width: 992px) {
    .stats-grid, .milestone-grid, .culture-grid, .honor-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 768px) {
    .stats-grid, .milestone-grid, .culture-grid, .honor-grid { grid-template-columns: 1fr; }
    .cat-tabs { margin-bottom: 50px; }
}

/* ===== CMS global link-color reset (fixes default blue/underline) ===== */
a:has(h1), a:has(h2), a:has(h3), a:has(h4), a:has(img),
a.logo, a.logo *, .logo, .logo *,
a.news-thumb, a.news-thumb *, a.prod-thumb, a.prod-thumb *,
a.img-wrap, a.img-wrap *, a.thumb, a.thumb *, a.cover, a.cover *,
a[style*='background-image'], a[style*='background'],
a.card, a.card *, a.work-card, a.work-card *, a.product-card, a.product-card *,
a.news-card, a.news-card *, a.news-item, a.news-item *, a.case-card, a.case-card *,
a.service-card, a.service-card *, a.svc-card, a.svc-card *, a.item-card, a.item-card * {
  color: inherit !important;
  text-decoration: none !important;
}
a:has(h1):hover, a:has(h2):hover, a:has(h3):hover, a:has(h4):hover,
a.logo:hover, .logo:hover, a.card:hover, a.card *:hover,
a.news-thumb:hover, a.prod-thumb:hover, a.work-card:hover, a.product-card:hover,
a.news-card:hover, a.news-item:hover, a.case-card:hover, a.service-card:hover { color: inherit !important; }
a.prod-img-link, a.prod-img-link *,
a.img-link, a.img-link *, a.thumb-link, a.thumb-link *,
a.cover-link, a.cover-link *, a.media-link, a.media-link *,
a[class*='-thumb'], a[class*='-img'], a[class*='-cover'],
a[class*='thumb-'], a[class*='img-'],
a.img-side, a.img-side *, a.pic, a.pic *, a.pic-link, a.pic-link * {
  color: inherit !important;
  text-decoration: none !important;
}
/* ===== CMS heading-link reset (anchor inside heading) ===== */
h1 a, h2 a, h3 a, h4 a, h5 a {
  color: inherit !important;
  text-decoration: none !important;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover { color: inherit !important; }
