:root { --main-color: #ffd700; --main-width: 1200px; --h1-size: 2.4rem; --h2-size: 1.8rem; --h3-size: 1.5rem; --h1-color: #ffffff; --h2-color: #ffffff; --h3-color: #ffffff; }
body { margin: 0; padding: 0; font-family: 'Segoe UI', Arial, sans-serif; background: #1a1300; color: #ffffff; }
img { max-width: 100%; height: auto; display: block; border-radius: 10px; }
a { color: inherit; text-decoration: underline; }
a:hover { color: var(--main-color); }
.hero-section { padding: 0; position: relative; overflow: hidden; width: 100%; background: rgb(42, 26, 0); }
.hero-bg-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-container { max-width: var(--main-width); margin: 0 auto; padding: 0 20px; display: flex; align-items: center; gap: 40px; position: relative; z-index: 2; flex-direction: row; height: 100%; min-height: 420px; }
.hero-content { flex: 1; margin: 50px 0 50px 0; }
.hero-title { font-size: var(--h1-size); line-height: 1.1; margin-bottom: 20px; font-weight: 700; position: relative; display: inline-block; color: var(--h1-color); }
.hero-subtitle { font-size: 1.3rem; margin-bottom: 30px; position: relative; display: block; margin-top: 20px; color: #ffffff; }
.hero-btn { background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%); color: #1a1a2e; border: none; padding: 15px 35px; border-radius: 6px; font-size: 1.1rem; cursor: pointer; font-weight: bold; box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3); transition: all 0.3s; margin-top: 20px; position: relative; overflow: hidden; }
.hero-btn span { position: relative; z-index: 2; }
.hero-btn-shine { position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent); }
.hero-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.hero-btn:hover .hero-btn-shine { animation: hero-shine 1s; }
@keyframes hero-shine { 100% { left: 100%; } }
@media (max-width: 900px) {
    .hero-container { flex-direction: column; gap: 24px; min-height: unset; }
    .hero-content { margin: 35px 0 30px 0; width: 100%; }
}
@media (max-width: 600px) {
    .hero-title { font-size: 1.6rem; }
    .hero-container { padding: 0 8px; }
    .hero-content { margin: 20px 0 18px 0; }
}
.content-container { max-width: var(--main-width); margin: 0 auto; padding: 48px 20px 40px 20px; box-sizing: border-box; }
.content-container h1 { font-size: var(--h1-size); color: var(--h1-color); font-weight: bold; margin-top: 0; margin-bottom: 1.2em; }
.content-container h2 { font-size: var(--h2-size); color: var(--h2-color); font-weight: 600; margin-top: 2em; margin-bottom: 0.9em; letter-spacing: 0.01em; }
.content-container h3 { font-size: var(--h3-size); color: var(--h3-color); font-weight: 600; margin-top: 1.6em; margin-bottom: 0.8em; }
.content-container p { font-size: 1.12rem; line-height: 1.7; margin: 0 0 1.35em 0; }
.content-container ul { padding-left: 1.2em; margin: 0 0 1.7em 0; }
.content-container ul li { margin-bottom: 0.5em; }
.content-container table { width: 100%; border-collapse: collapse; margin: 1.8em 0 2em 0; font-size: 1rem; }
.content-container th, .content-container td { padding: 12px 16px; text-align: left; border-bottom: 2px solid #3d2b06; }
.content-container th { background: linear-gradient(90deg, #ffd700 0%, #ff8c00 100%); color: #1a1a2e; font-weight: bold; }
.content-container td { background: #2b2006; color: #fff6c0; }
.content-container img { margin: 1em 0 1.2em 0; }
.article-feed { margin: 3.5em 0 2.2em 0; }
.article-feed-title { font-size: var(--h2-size); color: var(--main-color); font-weight: 700; letter-spacing: 0.02em; margin-bottom: 1.1em; }
.feed-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 34px; }
.feed-article { background: #201500; border-radius: 11px; box-shadow: 0 6px 18px rgba(37,20,0,0.08); padding: 22px 20px 16px 20px; display: flex; flex-direction: column; align-items: flex-start; min-height: 340px; transition: box-shadow 0.2s; }
.feed-article:hover { box-shadow: 0 10px 32px rgba(255,140,0,0.16); }
.feed-article-image-link { display: block; margin-bottom: 1em; border-radius: 8px; overflow: hidden; width: 100%; }
.feed-article img { border-radius: 8px; }
.feed-article-title { font-size: 1.13rem; font-weight: 600; color: #ffd700; margin: 0 0 0.7em 0; text-decoration: underline; line-height: 1.2; }
.feed-article-title a { color: inherit; text-decoration: underline; }
.feed-article-description { color: #fff6c0; font-size: 0.97rem; margin-bottom: 0; }
@media (max-width: 600px) {
    .feed-list { grid-template-columns: 1fr; gap: 24px; }
    .feed-article { padding: 14px 10px 12px 10px; min-height: 200px; }
    .article-feed-title { font-size: 1.23rem; }
}
.comment-block { margin: 3.5em 0 1.6em 0; }
.comment-block-title { font-size: var(--h2-size); color: #ff8c00; font-weight: 700; letter-spacing: 0.01em; margin-bottom: 1.1em; }
.comment-list { display: flex; flex-direction: column; gap: 23px; }
.comment { padding: 18px 20px; border-radius: 9px; background: linear-gradient(90deg, #ff8c00 0%, #ffd700 100%); color: #322700; font-weight: 500; }
.comment-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.comment-name { font-size: 1.03rem; font-weight: bold; }
.comment-date { font-size: 0.97rem; opacity: 0.8; }
.comment-text { font-size: 1.09rem; line-height: 1.5; }
@media (max-width: 600px) {
    .comment { padding: 13px 8px; }
}
.faq-block { margin: 3.7em 0 2.5em 0; }
.faq-block-title { font-size: var(--h2-size); color: #ffd700; font-weight: 700; margin-bottom: 1.12em; }
.faq-list { display: flex; flex-direction: column; gap: 21px; }
.faq { background: #201a1e; border-left: 7px solid #ffd700; border-radius: 0 13px 13px 0; padding: 16px 22px 13px 19px; color: #fff; box-shadow: 0 1px 9px rgba(255,140,0,0.04); }
.faq-question { font-size: 1.09rem; font-weight: bold; color: #ffd700; margin-bottom: 6px; }
.faq-answer { font-size: 1rem; color: #fff6c0; }
@media (max-width: 600px) {
    .faq { padding: 9px 8px 8px 7px; }
}
.template_invisible { display: none !important; }
.footer { width: 100%; background: #171008; color: #fff6c0; padding: 38px 0 18px 0; }
.footer-container { max-width: var(--main-width); margin: 0 auto; padding: 0 16px; display: flex; flex-direction: column; align-items: center; }
.footer-menu { margin-bottom: 18px; display: flex; gap: 36px; }
.footer-menu a { color: #fff6c0; text-decoration: none; font-size: 1rem; font-weight: 500; position: relative; transition: color 0.25s; }
.footer-menu a:hover, .footer-menu a.active { color: var(--main-color); }
@media (max-width: 700px) {
    .footer-container { align-items: stretch; }
    .footer-menu { flex-direction: column; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
}
.footer-copyright { text-align: center; font-size: 1rem; opacity: 0.73; margin-top: 17px; }
:root { --menu-color: #000000; --menu-text: #FFFFFF; --hover-color: var(--main-color); --hover-text: #000000; }
[data-theme="light"] { --menu-color: #FFFFFF; --menu-text: #000000; --hover-color: var(--main-color); --hover-text: #FFFFFF; }
a { color: inherit; text-decoration: underline; }
.container { max-width: var(--main-width); margin: 0 auto; padding: 0 20px; }
header { padding: 0; background-color: var(--menu-color); position: relative; }
.desktop-menu { display: flex; list-style: none; margin: 0; padding: 0; }
.desktop-menu > li { position: relative; margin: 0px; }
.desktop-menu > li > a { color: var(--menu-text); text-decoration: none; font-size: 1rem; padding: 10px 15px; display: flex; align-items: center; transition: color 0.1s; }
.desktop-menu > li > a:hover { color: var(--hover-color); }
.desktop-menu > li.has-submenu > a::after { content: '▼'; font-size: 0.5rem; margin-top: 2px; margin-left: 5px; }
.submenu { position: absolute; top: 100%; left: 0; background-color: var(--menu-color); min-width: 200px; list-style: none; opacity: 0; visibility: hidden; transition: all 0.1s; z-index: 1000; border-radius: 5px; overflow: hidden; }
.desktop-menu > li:hover .submenu { opacity: 1; visibility: visible; }
.submenu { margin: 0px; padding: 0px !important; }
.submenu li { margin: 0px; padding: 0px !important; }
.submenu li a { color: var(--menu-text); text-decoration: none; display: block; width: 100% !important; padding: 12px 15px; margin: 0px !important; transition: background 0.1s; }
.submenu li a:hover { color: var(--hover-text); background-color: var(--hover-color); }
.burger-menu { order: 3; display: none; background: none; border: none; color: #ffffff; font-size: 1.6rem; cursor: pointer; }
.mobile-menu-close { position: absolute; top: 15px; right: 15px; background: none; border: none; color: white; font-size: 24px; cursor: pointer; display: none; }
.header-container { display: flex; flex-wrap: wrap; align-items: center; }
nav { order: 2; display: block; width: auto; margin-left: auto; margin-top: 12px; margin-bottom: 12px; }
.logo { order: 1; font-size: 1.8rem; font-weight: bold; color: var(--hover-color); text-decoration: none; margin-right: auto; }
.logo img { margin: 0px; }
.header-right { order: 3; display: inline-block; margin-left: 20px; padding: 12px 0; }
.language-switcher { }
.language-switcher:empty { display: none; }
.language-switcher { display: flex; gap: 15px; }
.language-switcher a { color: #fff; text-decoration: none; font-size: 14px; }
@media (max-width: 768px) {
    .logo { order: 1; font-size: 1.4rem; }
    .burger-menu { display: block; margin-left: auto; }
    .header-right { display: block; width: 100%; text-align: center; }
    .language-switcher { display: inline-flex; margin: 10px auto 0px auto; }
}
@media (max-width: 768px) {
    nav { position: fixed; top: 0; left: 0; width: 80%; height: 100vh; background: #1a1a1a; z-index: 1000; transform: translateX(-100%); transition: transform 0.3s ease; padding: 60px 20px 20px; box-sizing: border-box; }
    nav.active { transform: translateX(0); }
    .desktop-menu { flex-direction: column; margin: 0px; }
    .has-submenu { position: relative; width: 100%; font-size: 0.9rem; margin: 0px; padding-right: 30px; }
    .has-submenu > a { display: flex; }
    .desktop-menu > li.has-submenu > a::after { position: absolute; right: 0px; top: 20px; transform: translateY(-50%); font-size: 0.8rem; margin-left: 0; transition: transform 0.3s; padding: 10px; }
    .desktop-menu > li.has-submenu > a.submenu-active::after { padding: 10px; transform: translateY(-50%) rotate(180deg); }
    .submenu { display: none; position: static; opacity: 1; visibility: visible; background-color: transparent; padding-left: 15px; }
    .submenu.active { display: block; margin-left: 20px; margin-bottom: 0px;}
    .submenu li a { color: var(--menu-text); background-color: transparent; text-decoration: none; display: block; padding: 5px 0px; transition: background 0.1s; }
    .submenu li a:hover { color: var(--hover-color); background-color: transparent; }
    .nav-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 999; }
    .nav-overlay.active { display: block; }
    .mobile-menu-close { display: block; }
}

/*
@media (max-width: 1919px) { :root { --main-width: 1200px; } [style*="max-width: 1200px"] { max-width: 1200px !important; } }
@media (min-width: 1530px) and (max-width: 1920px) { :root { --main-width: 90%; } [style*="max-width: 1200px"], .hero-container, .hero-section .hero-container, .hero-section .hero-container[style*="max-width: 1200px"], .hero-container[style*="max-width: 1200px"], [style*="max-width: 1200px"].hero-container { max-width: 90% !important; width: 90% !important; } }
@media (min-width: 1921px) { :root { --main-width: 80%; } [style*="max-width: 1200px"], .hero-container, .hero-section .hero-container, .hero-section .hero-container[style*="max-width: 1200px"], .hero-container[style*="max-width: 1200px"], [style*="max-width: 1200px"].hero-container { max-width: 80% !important; width: 80% !important; } }
    */
    .main-content { margin-top: 20px; }
    .sidebar { flex: 0 0 25%; margin-top: 20px; }
    .content-container > p, .content-container > ul > li, .content-container > ol > li { font-size: 1.15rem; letter-spacing: 0.5px; }
    .content-container > img, .content-container > p > img { max-width: 100%; border-radius: 10px; }
    .main-content > p, .main-content > ul > li, .main-content > ol > li { font-size: 1.15rem; letter-spacing: 0.5px; }
    .main-content > img, .main-content > p > img { max-width: 100%; border-radius: 10px; }
    .cta-button { text-decoration: none !important; }
    .toc-section { padding-top: 0px !important; }
    .random-link-block { display: flex; align-items: center; background: #251900; border-radius: 11px; border-left: 7px solid #2dff74; font-size: 1.11rem; font-weight: 500; color: #eaffd1; box-shadow: 0 2px 14px #51f87e22; margin: 32px 0 30px 0; padding: 15px 18px 15px 20px; }
    .random-link-block a { color: #2dff74; text-decoration: underline; font-weight: bold; font-size: 1.13em; transition: color 0.16s; }
    .random-link-block a:hover { color: #fff; }
@media (max-width: 600px) {
    .random-link-block { font-size: 0.99rem; padding: 11px 11px 11px 14px; }
}
.cta-brand-btn { display: inline-block; margin: 44px auto 35px auto; background: linear-gradient(90deg, #fd4c35 0%, #4ccaff 100%); color: #fff; border: none; border-radius: 16px; font-size: 1.29rem; font-weight: bold; letter-spacing: 0.04em; padding: 22px 62px; text-align: center; cursor: pointer; box-shadow: 0 7px 29px #ff833420, 0 1px 0 #fff6; transition: background 0.18s, color 0.18s, transform 0.16s, box-shadow 0.15s; outline: none; position: relative; z-index: 2; }
.cta-brand-btn:before { content: ""; position: absolute; left: -55%; top: -70%; width: 110%; height: 220%; background: linear-gradient(120deg,rgba(255,255,255,0.16) 0%,rgba(255,255,255,0.35) 48%,rgba(255,255,255,0.09) 100%); opacity: 0; transition: opacity 0.16s; }
.cta-brand-btn:hover { transform: translateY(-5px) scale(1.045); background: linear-gradient(90deg, #4ccaff 0%, #fd4c35 100%); color: #fff; box-shadow: 0 14px 35px #fd4c355a, 0 1px 0 #fff8; }
.cta-brand-btn:hover:before { opacity: 1; animation: shine-cta-btn 1.11s 1; }
@keyframes shine-cta-btn { 0%{ left: -55%; opacity:0.22;} 40%{ left: 50%; opacity:0.43;} 100%{ left: 120%; opacity:0;} }
@media (max-width: 600px) { .cta-brand-btn { font-size: 1.07rem; padding: 15px 18px; border-radius: 10px; } }
    .brand-table-block { box-shadow: 0 10px 48px rgba(255, 216, 64, 0.23); border-radius: 22px; overflow: hidden; background: #251900; margin: 56px 0 42px 0; width: 100%; }
    .brand-table-header { display: flex; align-items: stretch; background: linear-gradient(90deg, #ffd700 0%, #ff8c00 100%); color: #251900; font-weight: 700; font-size: 1.15rem; letter-spacing: 0.04em; text-transform: uppercase; border-bottom: 0; }
    .brand-table-header-cell { flex: 1 1 0; padding: 20px 8px 19px 8px; text-align: center; display: flex; align-items: center; justify-content: center; font-size: 1.11rem; }
    .brand-table-header-cell.brand-logo { flex: 1 1 180px; min-width: 140px; max-width: 180px; }
    .brand-table-header-cell.brand-rating { flex: 1 1 110px; max-width: 110px; min-width: 85px; }
    .brand-table-header-cell.brand-bonus { flex: 1 1 165px; min-width: 120px; max-width: 240px; }
    .brand-table-header-cell.brand-proscons { flex: 2 1 220px; min-width: 160px; }
    .brand-table-header-cell.brand-links { flex: 1 1 180px; min-width: 120px; }
    .brand-table-rows { display: flex; flex-direction: column; }
    .brand-table-row { display: flex; align-items: stretch; background: #231300; border-bottom: 2px solid #ffd7001f; transition: box-shadow 0.17s, transform 0.17s; font-size: 0.99rem; line-height: 1.38; }
    .brand-table-row:last-child { border-bottom: none; }
    .brand-table-row:hover { box-shadow: 0 0 20px 0 #ffb70054, 0 2px 0 0 #ffd70060 inset; z-index: 1; transform: scale(1.015); }
    .brand-table-cell { flex: 1 1 0; display: flex; align-items: center; justify-content: center; padding: 19px 8px 18px 8px; font-size: 0.97rem; color: #fff6c0; line-height: 1.33; word-break: break-word; }
    .brand-table-cell.brand-logo { flex: 1 1 180px; min-width: 140px; max-width: 180px; justify-content: center; }
    .brand-table-cell .brand-logo-img { width: 150px; height: auto; display: block; border-radius: 13px; box-shadow: 0 4px 20px 0 #00000029; background: #fff; padding: 7px 7px 7px 7px; }
    .brand-table-cell.brand-rating { flex: 1 1 110px; max-width: 110px; min-width: 85px; font-size: 1.3rem; justify-content: center; }
    .brand-table-cell.brand-bonus { flex: 1 1 165px; min-width: 120px; max-width: 240px; font-size: 0.99rem; font-weight: 500; color: #ffd700; }
    .brand-table-cell.brand-proscons { flex: 2 1 220px; min-width: 160px; justify-content: flex-start; align-items: flex-start; text-align: left; font-size: 0.97rem; line-height: 1.4; padding-left: 16px; color: #fffbe5; }
    .brand-table-cell.brand-proscons br { line-height: 1.1; }
    .brand-table-cell.brand-links { flex: 1 1 180px; min-width: 120px; justify-content: center; }
    .brand-link-btn { background: linear-gradient(90deg, #03ffc7 0%, #e400ff 100%); color: #fff; font-weight: 700; border: none; border-radius: 12px; font-size: 1.03rem; padding: 15px 31px 15px 25px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.5em; box-shadow: 0 6px 25px #c600ff38; letter-spacing: 0.01em; transition: background 0.24s, transform 0.2s, box-shadow 0.18s; outline: none; text-decoration: none; position: relative; overflow: hidden; min-width: 142px; }
    .brand-link-btn svg { margin-right: 7px; width: 22px; height: 22px; fill: #fff; display: inline-block; }
    .brand-link-btn:after { content: ""; position: absolute; left: -55%; top: -60%; width: 90%; height: 220%; background: linear-gradient(120deg,rgba(255,255,255,0.08) 0%,rgba(255,255,255,0.25) 51%,rgba(255,255,255,0.08) 100%); opacity: 0; transition: opacity 0.18s; }
    .brand-link-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 35px #e400ff47, 0 2px 0 #fffd; background: linear-gradient(90deg, #e400ff 0%, #03ffc7 100%); }
    .brand-link-btn:hover:after { opacity: 1; animation: shine-brand-link-btn 1.1s 1; }
@keyframes shine-brand-link-btn { 0%{ left: -55%; opacity:0.15;} 30%{ left: 40%; opacity:0.26;} 100%{ left: 110%; opacity:0;} }
    .brand-table-cell .brand-stars { color: #ffd700; letter-spacing: 2px; font-size: 1.33rem; }
@media (max-width: 900px) {
    .brand-table-header, .brand-table-row { font-size: 0.98rem; }
    .brand-table-header-cell, .brand-table-cell { padding: 13px 5px; }
    .brand-table-header-cell.brand-logo, .brand-table-cell.brand-logo { min-width: 85px; max-width: 105px; }
    .brand-table-cell .brand-logo-img { width: 95px; }
}
@media (max-width: 650px) {
    .brand-table-block { border-radius: 15px; margin: 37px 0 29px 0; }
    .brand-table-header { display: none; }
    .brand-table-rows { gap: 21px; }
    .brand-table-row { flex-direction: column; border-radius: 11px; border: none; box-shadow: 0 0 24px 0 #ffd70020; background: #231300; margin-bottom: 0px; align-items: stretch; transition: box-shadow 0.13s, transform 0.13s; }
    .brand-table-row:last-child { border-bottom: none; }
    .brand-table-cell { justify-content: center; align-items: center; text-align: center; padding: 14px 8px 13px 8px; font-size: 0.97rem; }
    .brand-table-cell.brand-logo { order: 1; margin-top: 8px; }
    .brand-table-cell.brand-rating { order: 2; margin-bottom: 0px; }
    .brand-table-cell.brand-bonus { order: 3; }
    .brand-table-cell.brand-proscons { order: 4; align-items: flex-start; justify-content: flex-start; text-align: left; padding-left: 14px; }
    .brand-table-cell.brand-links { order: 5; margin-bottom: 8px; }
}
.floating-panel { position: fixed; left: 10px; right: 10px; bottom: 10px; height: 80px; z-index: 1202; background: linear-gradient(90deg, #b400ff 0%, #01ffc8 100%); box-shadow: 0 4px 30px #5100b858; border-radius: 18px; display: flex; align-items: center; justify-content: space-between; padding: 0 32px; opacity: 0; pointer-events: none; transition: opacity 0.29s, transform 0.32s; transform: translateY(110%); }
.floating-panel.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.floating-panel-logo { font-size: 1.6rem; font-weight: bold; color: #fff; text-decoration: none; letter-spacing: 0.05em; margin-right: 24px; display: flex; align-items: center; height: 54px; }
.floating-panel .floating-panel-btn { background: linear-gradient(90deg, #ffeb02 0%, #ff5722 100%); color: #191200; font-weight: bold; border: none; border-radius: 14px; font-size: 1.15rem; padding: 17px 39px 17px 37px; text-align: center; cursor: pointer; box-shadow: 0 6px 25px #fd7b0036; transition: background 0.18s, color 0.15s, transform 0.16s; outline: none; text-decoration: none; display: flex; align-items: center; gap: 0.7em; }
.floating-panel .floating-panel-btn:hover { transform: translateY(-3px) scale(1.05); background: linear-gradient(90deg, #ff5722 0%, #ffeb02 100%); color: #191200; }
.floating-panel-placeholder { width: 100%; height: 80px; background: #171008; }
@media (max-width: 600px) {
    .floating-panel { height: 80px; min-height: 72px; padding: 0 7px; }
    .floating-panel-logo { display: none; }
    .floating-panel .floating-panel-btn { width: 100%; max-width: 99vw; font-size: 1.07rem; justify-content: center; padding: 15px 8px; border-radius: 9px; }
}

.floating-panel .floating-panel-btn {
    background: linear-gradient(90deg, #f1ca76 0%, #d7a04b 100%);
    color: #191200;
    font-weight: bold;
    border: none;
    border-radius: 14px;
    font-size: 1.15rem;
    padding: 17px 39px 17px 37px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 6px 25px #fd7b0036;
    transition: background 0.18s, color 0.15s, transform 0.16s;
    outline: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.7em;
}

.floating-panel .floating-panel-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(90deg, #d7a04b 0%, #f1ca76 100%);
    color: #191200;
}

.cta-brand-btn { display:none;}

.hero-section {
  position: relative;
  padding: 48px 20px 40px 20px;
}

.hero-fullwidth-link {
  display: block;
  width: 100%;
}

.hero-fullwidth-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-container { gap: 20px !important; flex-direction: column !important; }
  .hero-content { margin: 24px 0 !important; }
}
