/* ============================================================
   Eddga-Studio — Modern Gaming Theme (Blue / White)
   ============================================================ */

:root {
	--blue-50: #eff6ff;
	--blue-100: #dbeafe;
	--blue-200: #bfdbfe;
	--blue-300: #93c5fd;
	--blue-400: #60a5fa;
	--blue-500: #3b82f6;
	--blue-600: #2563eb;
	--blue-700: #1d4ed8;
	--blue-800: #1e40af;
	--blue-900: #1e3a8a;
	--ink: #0f172a;
	--ink-soft: #475569;
	--white: #ffffff;
	--border: #e2e8f0;
	--radius: 16px;
	--shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
	--shadow-md: 0 12px 32px rgba(37, 99, 235, 0.14);
	--shadow-glow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: 'Kanit', 'Segoe UI', sans-serif;
	background: var(--blue-50);
	color: var(--ink);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

.section-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--ink);
	text-align: center;
	margin: 0 0 8px;
}

.section-subtitle {
	text-align: center;
	color: var(--ink-soft);
	margin: 0 0 36px;
	font-size: 15px;
}

/* ---------- Navbar ---------- */

.site-navbar {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border);
}

.nav-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 14px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	font-size: 20px;
	color: var(--blue-700);
	letter-spacing: 0.5px;
}

.nav-brand img {
	height: 46px;
	width: auto;
}

.nav-links {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 0;
}

.nav-links li a {
	display: inline-block;
	padding: 10px 18px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	color: var(--ink-soft);
	transition: all 0.2s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
	background: var(--blue-100);
	color: var(--blue-700);
}

.nav-links li a.nav-cta {
	background: var(--blue-600);
	color: var(--white);
	box-shadow: var(--shadow-md);
}

.nav-links li a.nav-cta:hover {
	background: var(--blue-700);
	color: var(--white);
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 22px;
	color: var(--blue-700);
	cursor: pointer;
}

/* ---------- Hero ---------- */

.hero {
	position: relative;
	background-image: linear-gradient(135deg, rgba(30, 58, 138, 0.88) 0%, rgba(29, 78, 216, 0.85) 45%, rgba(59, 130, 246, 0.78) 100%),
		url('../../images/bghome.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: var(--white);
	padding: 72px 24px 110px;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 40px;
	align-items: center;
	max-width: 1280px;
	margin: 0 auto;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.12) 0, transparent 40%),
		radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.1) 0, transparent 45%);
	pointer-events: none;
}

.hero-logo {
	max-width: 380px;
	width: 100%;
	height: auto;
	margin: 0 0 20px;
	filter: drop-shadow(0 12px 24px rgba(2, 8, 23, 0.35));
}

.hero-content p {
	font-size: 18px;
	color: var(--blue-100);
	margin: 0 0 32px;
	max-width: 480px;
}

.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.hero-slider-wrap {
	position: relative;
	width: 100%;
	max-width: 545px;
	margin: 0 auto;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(2, 8, 23, 0.35);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-slider {
	width: 545px;
	height: 385px;
	transform-origin: top left;
}

.hero-slider iframe {
	width: 545px;
	height: 385px;
	display: block;
	border: 0;
}

.hero-wave {
	display: block;
	width: 100%;
	height: 60px;
	margin-top: -2px;
	background: var(--blue-50);
	clip-path: ellipse(70% 100% at 50% 100%);
}

/* ---------- Buttons ---------- */

.btn-modern {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 26px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 16px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-modern:hover {
	transform: translateY(-2px);
}

.btn-primary {
	background: var(--white);
	color: var(--blue-700);
	box-shadow: 0 10px 24px rgba(2, 8, 23, 0.25);
}

.btn-primary:hover {
	color: var(--blue-800);
	box-shadow: 0 14px 30px rgba(2, 8, 23, 0.3);
}

.btn-outline {
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
	border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.18);
	color: var(--white);
}

/* ---------- Quick action cards ---------- */

.quick-actions {
	max-width: 1200px;
	margin: -64px auto 0;
	padding: 0 24px 60px;
	position: relative;
	z-index: 5;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.action-card {
	background: var(--white);
	border-radius: var(--radius);
	padding: 28px 20px;
	text-align: center;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.action-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
	border-color: var(--blue-300);
}

.action-card i {
	font-size: 30px;
	color: var(--white);
	background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
	width: 60px;
	height: 60px;
	line-height: 60px;
	border-radius: 50%;
	display: inline-block;
	margin-bottom: 16px;
}

.action-card h3 {
	margin: 0 0 4px;
	font-size: 17px;
	font-weight: 700;
	color: var(--ink);
}

.action-card p {
	margin: 0;
	font-size: 12px;
	letter-spacing: 1px;
	color: var(--blue-500);
	font-weight: 600;
}

/* ---------- Sections ---------- */

.news-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 24px;
}

/* Bootstrap tab overrides */

.modern-tabs {
	border-bottom: none;
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 32px;
	flex-wrap: wrap;
}

.modern-tabs > li {
	float: none;
}

.modern-tabs > li > a {
	border: 1px solid var(--border);
	border-radius: 999px;
	color: var(--ink-soft);
	font-weight: 600;
	padding: 10px 22px;
	margin: 0;
}

.modern-tabs > li.active > a,
.modern-tabs > li.active > a:hover,
.modern-tabs > li.active > a:focus {
	background: var(--blue-600);
	border-color: var(--blue-600);
	color: var(--white);
}

.modern-tabs > li > a:hover {
	background: var(--blue-100);
	border-color: var(--blue-200);
}

.news-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 32px;
	align-items: start;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.news-card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: var(--shadow-sm);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.news-card figure {
	margin: 0;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.news-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.news-card-body {
	padding: 16px 18px 20px;
}

.news-card-title {
	font-weight: 700;
	font-size: 16px;
	margin: 0 0 6px;
	color: var(--ink);
}

.news-card-desc {
	font-size: 14px;
	color: var(--ink-soft);
	margin: 0 0 12px;
}

.news-card-date {
	display: block;
	font-size: 12px;
	color: var(--blue-500);
	font-weight: 600;
}

.news-more {
	text-align: center;
	margin-top: 32px;
}

.btn-primary-solid {
	background: var(--blue-600);
	color: var(--white);
	padding: 12px 32px;
	box-shadow: var(--shadow-md);
}

.btn-primary-solid:hover {
	background: var(--blue-700);
	color: var(--white);
}

/* ---------- Sidebar ---------- */

.news-sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.sidebar-box {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 18px 20px;
	box-shadow: var(--shadow-sm);
}

.sidebar-title {
	margin: 0 0 14px;
	font-size: 15px;
	font-weight: 700;
	color: var(--ink);
	padding-bottom: 10px;
	border-bottom: 2px solid var(--blue-100);
}

.server-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 14px;
	font-weight: 600;
	color: var(--ink-soft);
}

.server-row + .server-row {
	margin-top: 10px;
}

.status-pill {
	display: inline-block;
	padding: 4px 16px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	color: var(--white);
}

.status-pill.online,
.status-pill.open {
	background: #22c55e;
}

.status-pill.offline,
.status-pill.closed {
	background: #ef4444;
}

.promo-box {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
	color: var(--white);
	border: none;
}

.promo-box i {
	font-size: 20px;
	margin-top: 2px;
}

.promo-title {
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 4px;
}

.promo-desc {
	font-size: 12.5px;
	color: var(--blue-100);
}

.guildwar-box {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.guildwar-header {
	background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
	color: var(--white);
	text-align: center;
	font-weight: 800;
	letter-spacing: 2px;
	padding: 12px;
	font-size: 15px;
}

.guildwar-body {
	padding: 16px 18px 18px;
}

.guildwar-world {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 700;
	font-size: 14px;
	color: var(--ink);
	margin-bottom: 10px;
}

.guildwar-schedule {
	margin-top: 14px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.schedule-row {
	border-radius: 8px;
	padding: 8px 12px;
	color: var(--white);
}

.schedule-row span {
	display: block;
	font-size: 12.5px;
	font-weight: 700;
}

.schedule-row small {
	display: block;
	font-size: 11px;
	opacity: 0.9;
}

.schedule-row.schedule-1 { background: var(--blue-500); }
.schedule-row.schedule-2 { background: #6366f1; }
.schedule-row.schedule-3 { background: #f59e0b; }
.schedule-row.schedule-4 { background: #0ea5e9; }

/* ---------- Footer ---------- */

.site-footer {
	background: var(--blue-900);
	color: var(--blue-100);
	text-align: center;
	padding: 28px 24px;
	font-size: 13px;
}

/* ---------- Back to top ---------- */

.devil_box {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--blue-600);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-md);
	z-index: 90;
}

.devil_box:hover {
	background: var(--blue-700);
	color: var(--white);
}

/* ---------- Form pages (register / download) ---------- */

.form-page {
	min-height: calc(100vh - 74px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 24px;
	background-color: var(--blue-50);
}

.form-page.register-page {
	background-image: linear-gradient(rgba(239, 246, 255, 0.8), rgba(239, 246, 255, 0.92)), url('../../images/bgregis.png');
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: contain;
}

.form-page.download-page {
	background-image: linear-gradient(rgba(239, 246, 255, 0.8), rgba(239, 246, 255, 0.92)), url('../../images/bgdownload.png');
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: contain;
}

.form-card {
	width: 100%;
	max-width: 480px;
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border);
	padding: 36px 32px;
}

.form-card.form-card-wide {
	max-width: 560px;
	text-align: center;
}

.form-card h2 {
	text-align: center;
	margin: 0 0 24px;
	color: var(--ink);
	font-weight: 700;
}

.form-card label {
	color: var(--ink);
	font-weight: 600;
	font-size: 14px;
}

.field-hint {
	font-size: 12px;
	color: var(--ink-soft);
}

.phone-status {
	font-size: 12px;
	margin-top: 4px;
	display: block;
}

.phone-status.ok { color: #16a34a; }
.phone-status.taken { color: #dc2626; }

.form-card .btn-block {
	background: var(--blue-600);
	border-color: var(--blue-600);
	color: var(--white);
}

.form-card .btn-block:hover {
	background: var(--blue-700);
	border-color: var(--blue-700);
}

.download-desc {
	color: var(--ink-soft);
	margin-bottom: 28px;
}

.btn-download {
	font-size: 18px;
	padding: 14px 40px;
	background: var(--blue-600);
	border-color: var(--blue-600);
	color: var(--white);
}

.btn-download:hover {
	background: var(--blue-700);
	border-color: var(--blue-700);
}

/* ---------- Guide page ---------- */

.guide-hero {
	background: linear-gradient(135deg, var(--blue-900), var(--blue-700), var(--blue-500));
	color: var(--white);
	text-align: center;
	padding: 60px 24px 50px;
}

.guide-hero h1 {
	font-size: 32px;
	font-weight: 800;
	margin: 0 0 10px;
}

.guide-hero p {
	color: var(--blue-100);
	margin: 0;
}

.guide-content {
	max-width: 1000px;
	margin: 0 auto;
	padding: 50px 24px;
}

.guide-section {
	margin-bottom: 48px;
}

.guide-section-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--ink);
	margin: 0 0 18px;
	padding-left: 14px;
	border-left: 4px solid var(--blue-600);
}

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

.stat-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	padding: 20px;
	text-align: center;
}

.stat-card .stat-label {
	font-size: 13px;
	color: var(--ink-soft);
	margin-bottom: 6px;
}

.stat-card .stat-value {
	font-size: 22px;
	font-weight: 800;
	color: var(--blue-600);
}

.info-list {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	padding: 24px 28px;
	margin: 0;
}

.info-list li {
	padding: 8px 0;
	border-bottom: 1px dashed var(--border);
	color: var(--ink-soft);
	font-size: 14.5px;
}

.info-list li:last-child {
	border-bottom: none;
}

.info-table-wrap {
	overflow-x: auto;
	background: var(--white);
	border-radius: var(--radius);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-sm);
}

.info-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 480px;
}

.info-table th {
	background: var(--blue-600);
	color: var(--white);
	padding: 10px 14px;
	font-size: 13px;
	font-weight: 600;
	text-align: left;
	white-space: nowrap;
}

.info-table td {
	padding: 10px 14px;
	font-size: 13.5px;
	border-bottom: 1px solid var(--border);
	color: var(--ink-soft);
}

.info-table tr:last-child td {
	border-bottom: none;
}

.todo-tag {
	display: inline-block;
	background: #fef3c7;
	color: #92400e;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 999px;
	margin-left: 6px;
}

/* ---------- Refine rate tables ---------- */

.refine-block {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	padding: 24px 26px;
	margin-bottom: 20px;
}

.refine-block h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--ink);
	margin: 0 0 4px;
}

.refine-block-desc {
	color: var(--ink-soft);
	font-size: 13px;
	margin: 0 0 20px;
}

.refine-material {
	margin-bottom: 20px;
}

.refine-material:last-child {
	margin-bottom: 0;
}

.refine-material h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--blue-700);
	margin: 0 0 8px;
}

.refine-table-wrap {
	overflow-x: auto;
	border-radius: 10px;
	border: 1px solid var(--border);
}

.refine-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 560px;
}

.refine-table th {
	background: var(--blue-700);
	color: var(--white);
	padding: 10px 8px;
	font-size: 12.5px;
	font-weight: 600;
	text-align: center;
}

.refine-table th:first-child {
	text-align: left;
	padding-left: 12px;
}

.refine-table td {
	padding: 8px;
	text-align: center;
	border-bottom: 1px solid var(--border);
}

.refine-table tr:last-child td {
	border-bottom: none;
}

.refine-table td.refine-label {
	font-weight: 600;
	color: var(--ink);
	text-align: left;
	padding-left: 12px;
	white-space: nowrap;
}

.rate-pill {
	display: inline-block;
	min-width: 42px;
	padding: 4px 6px;
	border-radius: 6px;
	font-size: 12.5px;
	font-weight: 700;
	border: 1px solid transparent;
}

.rate-100, .rate-90 { background: #dcfce7; color: #15803d; border-color: #86efac; }
.rate-80, .rate-70 { background: #ecfccb; color: #4d7c0f; border-color: #bef264; }
.rate-60, .rate-50 { background: #fef9c3; color: #a16207; border-color: #fde047; }
.rate-40, .rate-30 { background: #ffedd5; color: #c2410c; border-color: #fdba74; }
.rate-25, .rate-20, .rate-15 { background: #fee2e2; color: #b91c1c; border-color: #fca5a5; }
.rate-10, .rate-7, .rate-5 { background: #fecaca; color: #991b1b; border-color: #f87171; }

/* ---------- World map ---------- */

.worldmap-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	padding: 16px 20px;
	margin-bottom: 32px;
}

.worldmap-select {
	max-width: 260px;
}

.worldmap-check {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--ink-soft);
	margin: 0;
}

.worldmap-mosaic-wrap {
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	padding: 16px;
}

.worldmap-mosaic {
	position: relative;
}

.mosaic-tile {
	position: absolute;
	cursor: pointer;
	width: 50px;
	height: 50px;
	overflow: hidden;
	border: 1px solid transparent;
	transition: border-color 0.15s ease, transform 0.15s ease;
	z-index: 1;
}

.mosaic-tile img {
	width: 100%;
	height: 100%;
	display: block;
}

.mosaic-tile:hover {
	border-color: var(--blue-500);
	transform: scale(1.4);
	z-index: 5;
	box-shadow: var(--shadow-md);
}


.spawn-panel {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.spawn-panel-head {
	background: var(--blue-700);
	color: var(--white);
	font-weight: 700;
	padding: 12px 20px;
	font-size: 15px;
}

.spawn-panel .info-table-wrap {
	border: none;
	border-radius: 0;
	box-shadow: none;
}

#dungeon_groups {
	column-count: 2;
	column-gap: 40px;
}

.dungeon-group {
	margin-bottom: 28px;
	break-inside: avoid;
}

.dungeon-strip {
	display: flex;
	flex-wrap: wrap;
}

.dungeon-tile {
	position: relative;
}

.dungeon-group-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--ink);
	margin: 0 0 12px;
	padding-bottom: 6px;
	border-bottom: 2px solid var(--blue-100);
}

.map-tooltip {
	position: fixed;
	display: none;
	z-index: 2000;
	background: var(--white);
	border-radius: 10px;
	box-shadow: var(--shadow-md);
	overflow: hidden;
	width: 300px;
	max-height: 360px;
	pointer-events: none;
	border: 1px solid var(--border);
}

.map-tooltip-head {
	background: #555a63;
	color: var(--white);
	font-weight: 700;
	padding: 10px 16px;
	font-size: 14px;
}

.map-tooltip-body {
	max-height: 300px;
	overflow-y: auto;
}

.map-tooltip .info-table {
	min-width: 0;
}

.map-tooltip .info-table th,
.map-tooltip .info-table td {
	font-size: 12px;
	padding: 6px 10px;
}

.back-link {
	display: block;
	margin-top: 20px;
	color: var(--ink-soft);
}

/* ---------- Responsive ---------- */

@media (max-width: 992px) {
	.hero {
		grid-template-columns: 1fr;
		text-align: center;
		padding-top: 48px;
	}

	.hero-content p {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-actions {
		justify-content: center;
	}

	.quick-actions {
		grid-template-columns: repeat(2, 1fr);
	}

	#dungeon_groups {
		column-count: 1;
	}

	.news-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.news-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 6px;
		background: var(--white);
		padding: 12px 20px 20px;
		box-shadow: var(--shadow-md);
		border-top: 1px solid var(--border);
	}

	.nav-links.is-open {
		display: flex;
	}

	.nav-links li a {
		display: block;
		text-align: center;
	}

	.nav-toggle {
		display: block;
	}

	.hero-logo {
		max-width: 260px;
	}

	.quick-actions {
		grid-template-columns: 1fr 1fr;
		margin-top: -40px;
	}

	.news-grid {
		grid-template-columns: 1fr;
	}
}
