:root {
  --bg: #ffffff;
  --bg-card: #ffffff;
  --bg-soft: #f8f8f8;
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --primary: #dc2626;
  --primary-dark: #b91c1c;
  --accent: #dc2626;
  --border: rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  --font: "Outfit", system-ui, sans-serif;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

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

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-head .label {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

/* Header */
.site-header,
.site-header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  height: var(--header-h);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

/* Ana sayfa: header hero ile birleşik, kaydırınca belirgin */
.page-home .site-main {
  padding-top: 0;
}

.page-home .site-header--hero {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
}

.page-home .site-header--hero.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
}

body.page-blog .site-main {
  padding-top: var(--header-h);
}

.page-top-section {
  padding-top: 2.5rem;
}

.page-top-section--compact {
  padding-top: 1.5rem;
}

.blog-hero-lead {
  color: var(--muted);
  max-width: 520px;
  margin: 0.75rem auto 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 700;
  flex-shrink: 0;
}

.logo:hover {
  opacity: 0.92;
}

.logo-img {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(180px, 42vw);
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.35);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.hero-label {
  color: var(--primary);
  font-weight: 600;
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 20%, rgba(220, 38, 38, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(220, 38, 38, 0.05), transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero h1 span {
  color: var(--primary);
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-phone {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-phone small {
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-phone a {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.stat-item {
  text-align: center;
  padding: 1.25rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
}

.stat-item strong {
  display: block;
  font-size: 1.75rem;
  color: var(--primary);
  font-weight: 800;
}

.stat-item span {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid #fff;
  transition: transform 0.3s ease;
}

.hero-image-wrap:hover {
  transform: scale(1.02);
}

.hero-banner-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: rgba(220, 38, 38, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.about-list li {
  padding: 0.65rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--muted);
}

.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.about-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.about-box h3 {
  margin-top: 0;
  color: var(--primary);
}

/* Process */
.process-steps{
    display:flex;
    justify-content:space-between;
    gap:30px;
    flex-wrap:wrap;
}

.process-step{
    flex:1;
    text-align:center;
    padding:30px 20px;
    border-radius:20px;
    border:2px solid transparent;
    transition:all 0.35s ease;
    cursor:pointer;
    background:#fff;
}

.process-step:hover{
    transform:scale(1.08);
    border:2px solid #d71920;
    box-shadow:0 10px 30px rgba(215,25,32,0.18);
}

.step-num{
    width:56px;
    height:56px;
    background:#d71920;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    font-size:24px;
    font-weight:700;
    transition:all 0.35s ease;
}

.process-step:hover .step-num{
    transform:scale(1.15);
    background:#b30000;
}

.process-step h3{
    margin-bottom:10px;
    transition:0.3s;
}

.process-step:hover h3{
    color:#d71920;
}

.process-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.process-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--bg-card);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.15rem 1.25rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q::after {
  content: "+";
  color: var(--primary);
  font-size: 1.25rem;
}

.faq-item.open .faq-q::after {
  content: "−";
}

.faq-a {
  display: none;
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-item.open .faq-a {
  display: block;
}

/* Blog slider */
.blog-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blog-slider-viewport {
  flex: 1;
  overflow: hidden;
}

.blog-slider-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s ease;
  will-change: transform;
}

.slider-card {
  flex: 0 0 min(320px, 85vw);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.slider-card-img {
  display: block;
  line-height: 0;
  overflow: hidden;
}

.slider-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #fef2f2;
  transition: transform 0.3s;
}


.slider-card:hover .slider-card-img img {
  transform: scale(1.03);
}

.slider-card-body {
  padding: 1.25rem;
}

.slider-card-body time {
  font-size: 0.8rem;
  color: var(--muted);
}

.slider-card-body h3 {
  margin: 0.4rem 0 0.5rem;
  font-size: 1.05rem;
}

.slider-card-body h3 a {
  color: var(--text);
}

.slider-card-body h3 a:hover {
  color: var(--primary);
}

.slider-card-body p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slider-read {
  font-weight: 600;
  color: var(--primary);
}

.slider-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--bg);
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.slider-btn:hover {
  background: var(--primary);
  color: #fff;
}

.blog-slider-more {
  text-align: center;
  margin-top: 1.5rem;
}

.blog-slider-more a {
  font-weight: 600;
  color: var(--primary);
}

/* Contact */
.contact-layout {
  max-width: 100%;
}

.contact-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.info-card:hover {
  border-color: rgba(220, 38, 38, 0.25);
  box-shadow: var(--shadow);
}

.info-card h4 {
  margin: 0 0 0.35rem;
  font-size: 0.85rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-card p,
.info-card a {
  margin: 0;
  color: var(--text);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  line-height: 0;
}

.map-wrap iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.map-full {
  margin-top: 1.5rem;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  align-self: start;
  box-shadow: var(--shadow);
}

.contact-form-title {
  margin: 0 0 1.25rem;
  font-size: 1.15rem;
  color: var(--primary);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(220, 38, 38, 0.15);
}

.contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.form-msg {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.form-msg.ok {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}

.form-msg.err {
  background: rgba(220, 38, 38, 0.1);
  color: var(--primary-dark);
}

/* Blog */
.blog-hero {
  padding: 2.5rem 0 2rem;
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  padding-bottom: 4rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}

.blog-card:hover {
  border-color: rgba(220, 38, 38, 0.35);
}

.blog-card-img {
  display: block;
  line-height: 0;
}

.blog-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--bg-soft);
}


.blog-card time,
.blog-card h2,
.blog-card p,
.blog-card > a:last-child {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.blog-card time {
  padding-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.blog-card h2 {
  margin: 0.5rem 0;
  font-size: 1.15rem;
}

.blog-card h2 a {
  color: var(--text);
}

.blog-card h2 a:hover {
  color: var(--primary);
}

.blog-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
  padding-bottom: 0;
}

.blog-card > a:last-child {
  padding-bottom: 1.5rem;
  margin-top: auto;
}

.blog-single {
  padding: 1.5rem 0 4rem;
  max-width: 760px;
  margin: 0 auto;
}

.blog-single-cover {
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.blog-single-cover img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.blog-single h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 0.5rem;
}

.blog-single .meta {
  color: var(--muted);
  margin-bottom: 2rem;
}

.blog-single .content {
  color: var(--text);
  line-height: 1.8;
  font-size: 1.02rem;
}

.blog-single .content p {
  margin-bottom: 1.15rem;
}

.blog-single .content h3 {
  margin: 1.75rem 0 0.75rem;
  color: var(--primary-dark);
  font-size: 1.2rem;
}

.blog-single .content ul {
  padding-left: 1.35rem;
  margin-bottom: 1.15rem;
}

.blog-single .content li {
  margin-bottom: 0.4rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.blog-single-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.blog-single-footer .btn {
  min-width: 260px;
}

.btn-danger {
  background: #dc2626;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
}

.btn-danger:hover {
  background: #b91c1c;
}

/* Floating WhatsApp & scroll top */
.float-whatsapp,
.float-top {
  position: fixed;
  z-index: 999;
  display: grid;
  place-items: center;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.25s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.float-whatsapp {
  left: max(1rem, env(safe-area-inset-left));
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
}

.float-whatsapp:hover {
  transform: scale(1.06);
  color: #fff;
}

.float-top {
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.float-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.float-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .float-whatsapp {
    width: 52px;
    height: 52px;
    left: max(0.75rem, env(safe-area-inset-left));
    bottom: max(1rem, env(safe-area-inset-bottom));
  }

  .float-top {
    width: 44px;
    height: 44px;
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
  }
}

/* Footer */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 3rem 0 0;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-logo {
  display: block;
  height: 42px;
  width: auto;
  margin-bottom: 0.75rem;
  object-fit: contain;
}

.footer-grid h4 {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--primary);
}

.footer-grid p {
  margin: 0.25rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

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

.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.testimonial-content {
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--bg-soft);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-info h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
}

.testimonial-info span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .contact-top {
    grid-template-columns: 1fr;
  }

  .slider-btn.slider-prev,
  .slider-btn.slider-next {
    display: none;
  }

  .blog-slider-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .blog-slider-track {
    transform: none !important;
  }

  .slider-card {
    scroll-snap-align: start;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero-phones {
    flex-direction: column;
    gap: 0.75rem;
  }

  .admin-table-wrap {
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

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