@charset "UTF-8";
/* =============================================
   툰코(TOONKOR) 메인 스타일
   ============================================= */

/* ─────────────────────────────
   CSS 변수 정의
───────────────────────────── */
:root {
    /* Colors */
    --color-primary:         #1e1e2e;
    --color-primary-hover:   #2e2e42;
    --color-heading:         #1a1a1a;
    --color-text:            #333333;
    --color-bg:              #F4F4F4;
    --color-bg-alt:          #e0e0e0;
    --color-bg-alt2:         #e8e8e8;
    --color-border:          #d0d0d0;
    --color-white:           #ffffff;
    --color-gray-dark:       #606060;
    --color-nav-bg:          #1e1e2e;
    --color-nav-border:      #2e2e42;
    --color-nav-text:        #c8c8d8;
    --color-tg:              #29a8e0;
    --color-tg-hover:        #1a96ce;

    /* Typography */
    --font-main:             'Noto Sans KR', sans-serif;
    --container-width:      1100px;
}

/* ─────────────────────────────
   기본 리셋
───────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--color-text);
    background-color: var(--color-bg);
}

a {
    color: var(--color-primary);
    text-decoration: none;
}
a:hover {
    color: var(--color-primary-hover);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 600;
    color: var(--color-heading);
    line-height: 1.3;
}

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

ul {
    list-style: none;
}

/* ─────────────────────────────
   레이아웃 컨테이너
───────────────────────────── */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ─────────────────────────────
   헤더
───────────────────────────── */
#site-header {
    background-color: var(--color-nav-bg);
    border-bottom: 1px solid var(--color-nav-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 64px;
}

.header-left {
    display: flex;
}

/* 로고 */
.site-logo {
    justify-self: center;
}
.site-logo img {
    height: 44px;
    width: auto;
}

/* 헤더 오른쪽 영역 */
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
}

/* 데스크탑 내비게이션 */
.site-nav ul {
    display: flex;
    gap: 0;
}
.site-nav ul li a {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-nav-text);
    padding: 0 14px;
    height: 64px;
    display: flex;
    align-items: center;
}
.site-nav ul li a:hover {
    color: #ffffff;
}

/* 모바일 메뉴 토글 */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #ffffff;
}
.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* 모바일 내비게이션 */
.mobile-nav {
    display: none;
    background-color: var(--color-nav-bg);
    border-top: 1px solid var(--color-nav-border);
    padding: 12px 0;
}
.mobile-nav ul li a {
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    color: var(--color-nav-text);
}
.mobile-nav.is-open {
    display: block;
}

/* ─────────────────────────────
   히어로 섹션
───────────────────────────── */
#hero {
    text-align: center;
}

.hero-banner {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 0;
}
.hero-banner img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 24px 0 16px;
    line-height: 1.4;
}

/* ─────────────────────────────
   CTA 버튼 (공통)
───────────────────────────── */
.btn-cta,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.2s;
    padding: 14px 28px;
}
.btn-cta:hover,
.btn-cta-secondary:hover {
    background-color: var(--color-primary-hover);
    color: var(--color-white);
}
.btn-cta svg,
.btn-cta-secondary svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}
.btn-cta {
    margin-bottom: 32px;
}

/* ─────────────────────────────
   콘텐츠 섹션 (공통)
───────────────────────────── */
.content-section {
    padding: 56px 0;
}

.content-section--first {
    padding-top: 24px;
}

.content-section-alt {
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 16px;
}

.content-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 12px;
}
.content-text a {
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.content-text a:hover {
    color: var(--color-primary-hover);
}

/* ─────────────────────────────
   포인트 아이템 (season2)
───────────────────────────── */
.point-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
}
.point-item:last-child {
    border-bottom: none;
}
.point-item-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 8px;
}

/* ─────────────────────────────
   웹툰 통계 배너
───────────────────────────── */
.stats-banner {
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 28px 0;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
}

.stats-number {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.stats-label {
    font-size: 14px;
    color: var(--color-text);
    margin-top: 4px;
}

.stats-divider {
    width: 1px;
    height: 40px;
    background-color: var(--color-border);
}

/* ─────────────────────────────
   분야별 빠른 진입 칩
───────────────────────────── */
.genre-quick-nav {
    padding-top: 40px;
    padding-bottom: 40px;
}

.genre-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.2s;
    cursor: pointer;
}
.chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.chip-romance  { background-color: #fce4ec; color: #c2185b; border-color: #f48fb1; }
.chip-fantasy  { background-color: #ede7f6; color: #7b1fa2; border-color: #ce93d8; }
.chip-action   { background-color: #fff3e0; color: #e65100; border-color: #ffb74d; }
.chip-thriller { background-color: #e8eaf6; color: #1a237e; border-color: #9fa8da; }
.chip-drama    { background-color: #f3e5f5; color: #6a1b9a; border-color: #ba68c8; }
.chip-comedy   { background-color: #fff9c4; color: #f57f17; border-color: #fff176; }
.chip-daily    { background-color: #e0f2f1; color: #00695c; border-color: #80cbc4; }
.chip-sports   { background-color: #e3f2fd; color: #1565c0; border-color: #90caf9; }

/* ─────────────────────────────
   툰코란? - 양쪽 컬럼 리스트
───────────────────────────── */
.two-col-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 28px;
}

.two-col-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
}

.two-col-list ul {
    list-style: none;
    padding: 0;
}

.two-col-list ul li {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.7;
    padding: 6px 0 6px 20px;
    position: relative;
}

.two-col-list ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 13px;
}

/* ─────────────────────────────
   웹툰 요일별 연재 일정
───────────────────────────── */
.schedule-section {
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    margin-top: 4px;
}

.schedule-item {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 16px 12px;
    text-align: center;
    background-color: var(--color-bg);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-day {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-heading);
}

.schedule-tags {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.schedule-tags li {
    list-style: none;
}

.tag-fantasy,
.tag-action,
.tag-romance,
.tag-drama,
.tag-thriller,
.tag-comedy,
.tag-daily,
.tag-sports {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.tag-romance  { background-color: #fce4ec; color: #c2185b; }
.tag-fantasy  { background-color: #ede7f6; color: #7b1fa2; }
.tag-action   { background-color: #fff3e0; color: #e65100; }
.tag-thriller { background-color: #e8eaf6; color: #1a237e; }
.tag-drama    { background-color: #f3e5f5; color: #6a1b9a; }
.tag-comedy   { background-color: #fff9c4; color: #f57f17; }
.tag-daily    { background-color: #e0f2f1; color: #00695c; }
.tag-sports   { background-color: #e3f2fd; color: #1565c0; }

.schedule-note {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
}

/* ─────────────────────────────
   주요 기능 - 카드형 그리드
───────────────────────────── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 28px;
}

.feature-card {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--color-nav-bg);
}

.feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-heading);
}

.feature-desc {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.75;
}

/* ─────────────────────────────
   웹툰 추천 카드 그리드
───────────────────────────── */
.webtoon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.webtoon-card {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--color-bg);
}
.webtoon-card-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    background-color: var(--color-bg-alt);
}
.webtoon-card-body {
    padding: 14px 16px;
}
.webtoon-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-heading);
    margin-top: 10px;
    margin-bottom: 6px;
}
.webtoon-card-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 10px;
}
.webtoon-card-body > a:last-child {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-top: 4px;
}
.webtoon-card-body > a:last-child:hover {
    color: var(--color-primary-hover);
}

/* 장르 레이블 */

/* ─────────────────────────────
   비교 테이블
───────────────────────────── */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.compare-table th,
.compare-table td {
    border: 1px solid var(--color-border);
    padding: 12px 16px;
    text-align: left;
    line-height: 1.5;
    vertical-align: middle;
    white-space: normal;
}
.compare-table td:first-child {
    white-space: nowrap;
    width: 120px;
}
.compare-table td:nth-child(2) {
    width: 35%;
}
.compare-table thead th {
    background-color: var(--color-bg-alt);
    font-weight: 700;
    color: var(--color-heading);
}
.compare-table tbody tr:nth-child(odd) {
    background-color: var(--color-bg-alt2);
}

/* 테이블 내 사이트 아이콘 */
.table-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    max-width: 24px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 8px;
    display: inline-block;
}

/* ──────────────────────────────
   FAQ 섹션
───────────────────────────── */
.faq-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
}
.faq-item:first-of-type {
    border-top: 1px solid var(--color-border);
}
.faq-question {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 8px;
}
.faq-answer {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.75;
}

/* ─────────────────────────────
   하단 CTA 버튼 (중앙 정렬)
───────────────────────────── */
.btn-cta-center {
    text-align: center;
    margin-top: 32px;
}
.btn-cta-secondary {
    padding: 14px 32px;
}

/* ─────────────────────────────
   푸터
───────────────────────────── */
#site-footer {
    background-color: var(--color-nav-bg);
    border-top: 1px solid var(--color-nav-border);
    padding: 24px 0;
    text-align: center;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 4px;
    margin-bottom: 16px;
    font-size: 13px;
}
.footer-nav a {
    color: var(--color-nav-text);
    text-decoration: none;
}
.footer-nav a:hover {
    color: #ffffff;
}
.footer-nav span {
    color: #555577;
}

.footer-copyright {
    font-size: 13px;
    color: var(--color-nav-text);
    line-height: 1.8;
}
.footer-copyright p {
    margin-bottom: 4px;
}

/* ─────────────────────────────
   스크롤 상단 버튼
───────────────────────────── */
#scroll-top {
    display: none;
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    z-index: 99;
    transition: background-color 0.2s;
}
#scroll-top:hover {
    background-color: var(--color-primary-hover);
}
#scroll-top.is-visible {
    display: flex;
}
#scroll-top svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transform: rotate(180deg);
}

/* ─────────────────────────────
   전역 브레드크럼
───────────────────────────── */
.breadcrumb-wrap {
    border-bottom: 1px solid var(--color-border);
    padding: 10px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    font-size: 13px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-gray-dark);
}

.breadcrumb li + li::before {
    content: '›';
    color: #aaaaaa;
}

.breadcrumb a {
    color: var(--color-gray-dark);
}
.breadcrumb a:hover {
    color: var(--color-heading);
}

.breadcrumb li:last-child {
    color: var(--color-heading);
    font-weight: 600;
}

/* ─────────────────────────────
   블로그 글 페이지
───────────────────────────── */
.article-meta {
    font-size: 14px;
    color: #888888;
    margin-bottom: 12px;
}

.article-thumb {
    display: block;
    width: 100%;
    max-width: 720px;
    height: auto;
    border-radius: 8px;
    margin: 0 auto 36px;
}

.article-faq {
    margin-top: 48px;
    padding-top: 32px;
}

.article-related {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}
.article-related .section-title {
    margin-bottom: 20px;
}

/* ─────────────────────────────
   블로그 평가 요약 카드
───────────────────────────── */
.review-summary {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eaff 100%);
    border: 1px solid #c5d0ff;
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.review-score-wrap {
    flex-shrink: 0;
    text-align: center;
}

.review-score {
    font-size: 48px;
    font-weight: 800;
    color: #2e2e42;
    line-height: 1;
}

.review-score-max {
    font-size: 18px;
    font-weight: 600;
    color: #8899cc;
}

.review-stars {
    font-size: 22px;
    letter-spacing: 2px;
    color: #ffb800;
    margin-top: 4px;
}

.review-score-label {
    font-size: 13px;
    font-weight: 600;
    color: #1e1e2e;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-meta {
    flex: 1;
}

.review-meta-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.review-meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.review-tag {
    display: inline-block;
    background-color: #ffffff;
    color: #1e1e2e;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #c5d0ff;
}

/* ─────────────────────────────
   독자 평가 카드
───────────────────────────── */
.review-section {
    margin-bottom: 40px;
}

.review-section > p {
    font-size: 15px;
    color: #666666;
    margin-bottom: 16px;
}

.reader-review-card {
    background-color: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 18px 22px;
    margin-bottom: 10px;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}

.reader-review-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

.reader-review-card.positive {
    border-left: 4px solid #1e1e2e;
}

.reader-review-card.negative {
    border-left: 4px solid #e05050;
    background-color: #fffafafa;
}

.reader-review-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.reader-review-card.positive .reader-review-label {
    background-color: #e8eeff;
    color: #1e1e2e;
}

.reader-review-card.negative .reader-review-label {
    background-color: #ffe8e8;
    color: #e05050;
}

.reader-review-text {
    font-size: 15px;
    color: #333333;
    line-height: 1.7;
}

/* ─────────────────────────────
   편집장 총평 카드
───────────────────────────── */
.editor-review-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.editor-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e1e2e 0%, #2e2e42 100%);
}

.editor-review-badge {
    display: inline-block;
    background: linear-gradient(90deg, #1e1e2e, #2e2e42);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.editor-review-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.4;
}

.editor-review-text {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ─────────────────────────────
   추천 대상 그리드
───────────────────────────── */
.recommend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}

.recommend-item {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--color-heading);
    font-weight: 500;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.recommend-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(89,116,255,0.12);
}

.recommend-icon {
    width: 28px;
    height: 28px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.recommend-icon svg {
    width: 14px;
    height: 14px;
    fill: #ffffff;
}

/* ─────────────────────────────
   반응형 — 통합 관리
───────────────────────────── */
@media (max-width: 921px) {
.contact-box {
    margin-top: 32px;
}
.contact-item {
    margin-bottom: 24px;
}
.contact-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
}

.tg-btn {
    background-color: var(--color-tg);
}
.tg-btn:hover {
    background-color: var(--color-tg-hover);
    color: var(--color-white);
}

/* ─────────────────────────────
   반응형 — 통합 관리
───────────────────────────── */
@media (max-width: 921px) {
    .hero-title {
        font-size: 22px;
    }
    .webtoon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .review-summary {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .recommend-grid {
        grid-template-columns: 1fr;
    }
    .platform-grid,
    .feature-grid,
    .two-col-list {
        grid-template-columns: 1fr;
    }
    .stats-item {
        padding: 12px 20px;
    }
    .stats-number {
        font-size: 24px;
    }
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .genre-chips {
        gap: 8px;
    }
    .chip {
        padding: 7px 14px;
        font-size: 13px;
    }
}

@media (max-width: 544px) {
    .webtoon-grid {
        grid-template-columns: 1fr;
    }
    .compare-table {
        font-size: 13px;
        display: block;
        overflow-x: auto;
        white-space: normal;
    }
    .compare-table th,
    .compare-table td {
        padding: 8px 10px;
        white-space: normal;
    }
    .schedule-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 36px 0;
    }
    .hero-banner img {
        height: 200px;
    }
}
