/* =========================================================
   Locus Cell Japan — 共用カスタムスタイル
   既存 jp.html のインラインスタイルを抽出 + 記事/製品ページ用を追加
   ========================================================= */

:root {
    --primary-green: #61C1BE;
    --primary-green-dark: #4a9996;
    --secondary-green: #61C1BE;
    --light-green: #e8f7f6;
    --success-green: #4a9996;
    --gradient-green: linear-gradient(135deg, #61C1BE 0%, #4a9996 100%);
}

body {
    font-family: 'Noto Sans JP', 'Open Sans', sans-serif;
}

/* Hero Banner - Furyu.jp Style */
.hero-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 500px;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--success-green);
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-visual {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(97, 193, 190, 0.1);
    border: 3px solid var(--light-green);
    position: relative;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-green);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.1;
}

.cta-button {
    background: var(--gradient-green);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(97, 193, 190, 0.3);
}

.cta-button:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(97, 193, 190, 0.4);
}

/* Announcement Expandable Styles */
.announcement-item {
    background: white;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--light-green);
    overflow: hidden;
    transition: all 0.3s ease;
}

.announcement-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: linear-gradient(135deg, var(--light-green) 0%, #ffffff 100%);
    border-bottom: 1px solid var(--primary-green);
}

.announcement-header:hover {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--light-green) 50%, #ffffff 100%);
}

.announcement-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--success-green);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.announcement-icon {
    font-size: 1.1rem;
    color: var(--primary-green);
    transition: transform 0.3s ease;
    margin-top: 30px;
}

.announcement-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.announcement-content.expanded {
    max-height: 1000px;
    padding: 30px;
}

.announcement-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.announcement-item.expanded .announcement-icon {
    transform: rotate(180deg);
}

.announcement-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.announcement-date i {
    color: var(--primary-green);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: left;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-green);
    margin: 20px 0;
    border-radius: 2px;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.strategy-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-green);
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(97, 193, 190, 0.15);
}

.strategy-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.strategy-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--success-green);
    margin-bottom: 15px;
}

.strategy-text {
    color: #333;
    line-height: 1.6;
}

.team-section {
    background: var(--light-green);
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.team-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary-green);
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--success-green);
    margin-bottom: 10px;
}

.team-title {
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 500;
}

.cdmo-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cdmo-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.highlight-box {
    background: var(--gradient-green);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
}

/* Media Coverage Styles */
.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
    align-items: start;
}

.media-grid .media-card.is-full-width {
    grid-column: 1 / -1;
}

@media (max-width: 992px) {
    .media-grid {
        grid-template-columns: 1fr;
    }

    .media-grid .media-card.is-full-width {
        grid-column: auto;
    }
}

.media-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--light-green);
    transition: all 0.3s ease;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(97, 193, 190, 0.15);
    border-color: var(--primary-green);
}

.media-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--light-green) 0%, #ffffff 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--primary-green);
}

.media-source {
    display: flex;
    align-items: center;
    gap: 15px;
}

.media-info h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--success-green);
}

.media-date {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    color: #666;
}

.media-badge {
    background: var(--primary-green);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.media-content {
    padding: 30px;
}

.media-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
}

.media-link {
    background: var(--gradient-green);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(97, 193, 190, 0.3);
}

.media-link:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(97, 193, 190, 0.4);
}

.media-link i {
    font-size: 0.9rem;
}

/* 翻訳記事用 */
.translation-toggle-btn {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.translation-toggle-btn:hover {
    background: var(--primary-green);
    color: white;
}

.translation-content {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

.translation-content.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.translation-source {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #666;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ナビゲーション */
#header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

#header #logo {
    display: flex;
    align-items: center;
    height: 60px;
}

#header #logo img {
    height: 60px;
    width: auto;
}

.nav-menu a {
    color: #333 !important;
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--primary-green) !important;
}

/* 公告圖片 */
.announcement-image-container {
    margin: 25px 0;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.announcement-image {
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--light-green);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 15px auto;
    display: block;
    box-sizing: border-box;
}

.announcement-image:hover {
    transform: scale(1.01);
    box-shadow: 0 12px 30px rgba(97, 193, 190, 0.25);
}

.announcement-image.single {
    max-width: calc(100% - 40px);
    width: auto;
    height: auto;
    margin: 15px auto;
}

.announcement-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
    width: 100%;
    box-sizing: border-box;
}

.announcement-image-grid .announcement-image-container {
    margin: 0;
}

.announcement-image-grid .announcement-image {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
}

.announcement-image-caption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
    text-align: center;
    padding: 0 10px;
    word-wrap: break-word;
}

.announcement-content.expanded {
    max-height: none;
    padding: 30px;
    overflow-y: auto;
    box-sizing: border-box;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .strategy-grid,
    .team-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }

    .media-card {
        margin-bottom: 20px;
    }

    .media-header {
        padding: 20px;
    }

    .media-content {
        padding: 20px;
    }

    .announcement-image-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .announcement-image.single {
        max-width: calc(100% - 20px);
    }

    .announcement-content.expanded {
        padding: 20px;
    }

    .announcement-image-container {
        margin: 20px 0;
    }
}

/* =========================================================
   追加：サブページ共通（記事・製品）
   ========================================================= */

/* サブページのヒーロー帯 */
.page-hero {
    background: linear-gradient(135deg, var(--light-green) 0%, #ffffff 100%);
    padding: 130px 0 50px;
    border-bottom: 1px solid var(--light-green);
}

.page-hero .section-title {
    margin-bottom: 15px;
}

.page-lead {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
    max-width: 820px;
}

/* パンくず */
.breadcrumb-nav {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.breadcrumb-nav a {
    color: var(--primary-green);
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.breadcrumb-nav .sep {
    color: #bbb;
}

/* カテゴリタグ */
.category-tag {
    display: inline-block;
    background: var(--gradient-green);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(97, 193, 190, 0.3);
}

/* =========================================================
   記事一覧（ブログインデックス）
   ========================================================= */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin: 20px 0 30px;
}

.article-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--light-green);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(97, 193, 190, 0.18);
    border-color: var(--primary-green);
    color: inherit;
    text-decoration: none;
}

.article-card__thumb {
    height: 200px;
    overflow: hidden;
    background: var(--light-green);
}

.article-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-card__thumb img {
    transform: scale(1.05);
}

.article-card__body {
    padding: 25px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-card__tag {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-green-dark);
    background: var(--light-green);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.article-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--success-green);
    line-height: 1.5;
    margin: 0 0 12px;
}

.article-card__excerpt {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin: 0 0 20px;
    flex: 1;
}

.article-card__more {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-green);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* =========================================================
   記事詳細ページ
   ========================================================= */
.article-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 0 80px;
}

.article-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #2b2b2b;
    line-height: 1.4;
    margin: 0 0 20px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    color: #888;
    font-size: 0.9rem;
    padding-bottom: 25px;
    margin-bottom: 35px;
    border-bottom: 2px solid var(--light-green);
}

.article-meta i {
    color: var(--primary-green);
    margin-right: 6px;
}

.article-body {
    font-size: 1.06rem;
    line-height: 2;
    color: #333;
}

.article-body p {
    margin: 0 0 24px;
}

.article-body h2 {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--success-green);
    margin: 50px 0 22px;
    padding-left: 18px;
    border-left: 5px solid var(--primary-green);
    line-height: 1.5;
}

.article-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    margin: 32px 0 14px;
}

.article-body strong {
    color: var(--primary-green-dark);
}

.article-body ul {
    margin: 0 0 24px;
    padding-left: 0;
    list-style: none;
}

.article-body ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
}

.article-body ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-green);
    position: absolute;
    left: 0;
    top: 2px;
}

/* 記事内 figure */
.article-figure {
    margin: 35px 0;
    text-align: center;
}

.article-figure img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 2px solid var(--light-green);
}

.article-figure figcaption {
    font-size: 0.9rem;
    color: #777;
    margin-top: 12px;
    font-style: italic;
}

.figure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin: 35px 0;
}

.figure-grid .article-figure {
    margin: 0;
}

.figure-grid .article-figure img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* ハイライト（💡メリット）box — 既存 highlight-box の派生 */
.insight-box {
    background: var(--gradient-green);
    color: #fff;
    padding: 35px 40px;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 12px 30px rgba(97, 193, 190, 0.25);
}

.insight-box h3 {
    color: #fff;
    font-size: 1.3rem;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.insight-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.insight-box ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    line-height: 1.7;
}

.insight-box ul li:last-child {
    margin-bottom: 0;
}

.insight-box ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #fff;
    position: absolute;
    left: 0;
    top: 3px;
}

/* 免責事項ノート */
.disclaimer-note {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-green);
    border-radius: 8px;
    padding: 22px 26px;
    margin: 45px 0 0;
    font-size: 0.88rem;
    line-height: 1.85;
    color: #777;
}

.disclaimer-note strong {
    color: #555;
}

/* 記事フッター（戻る・関連） */
.article-footer-nav {
    margin-top: 55px;
    padding-top: 35px;
    border-top: 2px solid var(--light-green);
}

.back-to-list {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 30px;
}

.back-to-list:hover {
    color: var(--primary-green-dark);
    text-decoration: none;
}

.related-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 18px;
}

.related-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.related-list a {
    display: block;
    background: #fff;
    border: 2px solid var(--light-green);
    border-radius: 10px;
    padding: 18px 20px;
    text-decoration: none;
    color: var(--success-green);
    font-weight: 600;
    font-size: 0.98rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.related-list a:hover {
    border-color: var(--primary-green);
    box-shadow: 0 8px 20px rgba(97, 193, 190, 0.15);
    transform: translateY(-3px);
}

/* =========================================================
   製品情報ページ
   ========================================================= */
.product-intro {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
    max-width: 860px;
    margin-bottom: 20px;
}

.product-spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin: 30px 0 50px;
}

.spec-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--light-green);
    overflow: hidden;
    transition: all 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(97, 193, 190, 0.16);
    border-color: var(--primary-green);
}

.spec-card__head {
    background: var(--gradient-green);
    color: #fff;
    padding: 26px 30px;
}

.spec-card__name {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.spec-card__form {
    margin: 8px 0 0;
    font-size: 0.95rem;
    opacity: 0.95;
}

.spec-card__img {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: var(--light-green);
}

.spec-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.spec-card:hover .spec-card__img img {
    transform: scale(1.04);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table th,
.spec-table td {
    padding: 16px 30px;
    text-align: left;
    border-bottom: 1px solid #eef5f5;
    font-size: 0.98rem;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
    border-bottom: none;
}

.spec-table th {
    width: 42%;
    color: var(--primary-green-dark);
    font-weight: 600;
    background: #fafdfd;
}

.spec-table td {
    color: #333;
    font-weight: 500;
}

/* 製品の機能バッジ */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 25px 0 10px;
}

.feature-pill {
    background: var(--light-green);
    color: var(--primary-green-dark);
    border: 1px solid var(--primary-green);
    border-radius: 50px;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.feature-pill i {
    color: var(--primary-green);
}

/* 注意事項リスト */
.notice-box {
    background: #fff;
    border: 2px solid var(--light-green);
    border-radius: 14px;
    padding: 30px 34px;
    margin: 30px 0;
}

.notice-box h3 {
    font-size: 1.2rem;
    color: var(--success-green);
    font-weight: 700;
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notice-box ol {
    margin: 0;
    padding-left: 22px;
    color: #444;
    line-height: 1.9;
}

.notice-box ol li {
    margin-bottom: 10px;
}

/* サブページのフッター上 CTA バンド */
.subpage-cta {
    background: var(--light-green);
    padding: 55px 0;
    text-align: center;
}

.subpage-cta h3 {
    font-size: 1.5rem;
    color: var(--success-green);
    font-weight: 700;
    margin-bottom: 22px;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 110px 0 40px;
    }

    .article-title {
        font-size: 1.7rem;
    }

    .article-body {
        font-size: 1rem;
    }

    .spec-table th,
    .spec-table td {
        padding: 14px 20px;
    }
}
