@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* Varenyan Digital Static Site - Traditional CSS */
:root {
  --primary: #7c4dff;
  --primary-dark: #673de6;
  --primary-light: rgba(124, 77, 255, 0.1);
  --primary-100: rgba(255, 255, 255, 0.9);
  --foreground: #253143;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #253143;
  --white: #ffffff;
  --radius: 0.5rem;
  --container-max: 1280px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Layout */
.min-h-screen {
  min-height: 100vh;
}

.flex-col {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Top bar */
.top-bar {
  background: var(--primary-dark);
  color: var(--white);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.top-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.top-bar a {
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar a:hover {
  color: var(--gray-200);
}

.top-bar .social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow);
}

.header .container {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

.logo img {
  width: 60px;
  flex-shrink: 0;
}

.nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
}

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

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-desktop a:hover::after {
  width: 100%;
}

.nav-desktop a.btn, .nav-desktop a.btn:hover{
  color: var(--white);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
}

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

.btn-outline:hover {
  background: var(--primary-light);
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .menu-toggle { display: none; }
}

.menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gray-700);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

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

.nav-mobile a {
  font-weight: 500;
  color: var(--gray-700);
}

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

/* Main */
main {
  flex: 1;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gray-50);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.dot-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--primary) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.1;
}

.hero .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  width: 100%;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(124, 77, 255, 0.2);
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
}

.hero h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

@media (min-width: 640px) { .hero h1 { font-size: 1.875rem; } }
@media (min-width: 768px) { .hero h1 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3rem; } }

.hero h2 {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 600;
  margin: 0 0 0.5rem;
}

@media (min-width: 768px) { .hero h2 { font-size: 1.5rem; } }

.hero-desc {
  font-size: 1rem;
  color: var(--gray-600);
  margin: 0 0 1rem;
  line-height: 1.6;
}

@media (min-width: 768px) { .hero-desc { font-size: 1.125rem; } }

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-features { grid-template-columns: repeat(3, 1fr); }
}

.hero-features .badge {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  text-align: center;
}

.hero-benefits {
  background: var(--gray-50);
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.hero-benefits h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--gray-900);
}

.hero-benefits ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

@media (min-width: 768px) {
  .hero-benefits ul { grid-template-columns: 1fr 1fr; }
}

.hero-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.hero-benefits li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 0.4rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image-wrap {
  position: relative;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-light), var(--white), var(--primary-light));
}

@media (min-width: 768px) { .hero-image-wrap { height: 500px; } }
@media (min-width: 1024px) { .hero-image-wrap { height: 600px; } }

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2rem;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
}

.hero-slide.active {
  opacity: 1;
  z-index: 10;
}

.hero-nav {
  position: absolute;
  bottom: 4rem;
  left: 0;
  right: 0;
  z-index: 20;
}

.hero-nav .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-nav-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.9);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-lg);
}

.hero-nav-controls button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--gray-600);
  border-radius: 50%;
}

.hero-nav-controls button:hover {
  background: var(--primary);
  color: var(--white);
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-dots button {
  width: 2rem;
  height: 0.5rem;
  border-radius: 9999px;
  border: none;
  background: var(--gray-200);
  cursor: pointer;
  transition: all 0.3s;
}

.hero-dots button.active {
  background: var(--primary);
  transform: scale(1.1);
}

.hero-dots button:hover:not(.active) {
  background: rgba(124, 77, 255, 0.5);
}

.hero-counter {
  font-size: 0.75rem;
  color: var(--gray-600);
  background: rgba(255,255,255,0.7);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-gray {
  background: var(--gray-50);
}

.section-primary {
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-heading {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 0.5rem;
}

.section-gray .section-heading h2,
.section-primary .section-heading h2 {
  color: inherit;
}

.section-heading p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin: 0;
}

.section-primary .section-heading p {
  color: var(--primary-100);
}

.section-content {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.text-center { text-align: center; }

/* About */
.about-section .section-content p {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

/* Services grid */
.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--gray-900);
}

.service-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}

/* Why choose us */
.why-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: var(--radius);
  transition: background 0.3s;
}

.why-list li:hover {
  background: var(--gray-50);
}

.why-list h3 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 0.25rem;
}

.why-list p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
}

.why-list .icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: var(--primary);
}

.map-wrap {
  position: relative;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Products grid */
.products-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

.product-card {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .product-card { grid-template-columns: 1fr 1fr; }
}

.product-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--gray-900);
}

.product-card .tagline {
  font-size: 0.875rem;
  color: var(--primary);
  margin: 0 0 0.5rem;
}

.product-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0 0 1rem;
}

.product-card ul {
  margin: 0 0 1rem;
  padding: 0 0 0 1.25rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.product-card img {
  border-radius: var(--radius);
  width: 100%;
  height: 200px;
  object-fit: contain;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0 0 1rem;
  font-style: italic;
}

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

.testimonial-card .author img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .author-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gray-900);
}

.testimonial-card .author-role {
  font-size: 0.75rem;
  color: var(--gray-600);
}

/* Stats */
.stats-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

.stats-grid .stat {
  text-align: center;
}

.stats-grid .stat-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.25rem;
}

.stats-grid .stat-label {
  font-size: 0.875rem;
  color: var(--primary-100);
  margin: 0;
}

/* Blog grid */
.blog-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}

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

.blog-card a {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem 1.5rem 2rem;
  text-align: center;
  flex: 1;
}

.blog-card .category {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--gray-900);
}

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

.blog-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--gray-900);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

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

.contact-form .error {
  font-size: 0.75rem;
  color: #dc2626;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}

.contact-info-cards {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.contact-info-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
}

.contact-info-card h3 {
  margin: 0 0 0.25rem;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.contact-info-card p,
.contact-info-card a {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-900);
  font-weight: 600;
}

.contact-image {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .contact-image { height: 500px; }
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Page header */
.page-header {
  background: var(--gray-50);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .page-header { padding: 6rem 0; }
}

.page-header .container {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-header h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 1.5rem;
}

@media (min-width: 640px) {
  .page-header h1 { font-size: 3rem; }
}

.page-header p {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin: 0;
}

/* CTA section */
.cta-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .cta-section { padding: 6rem 0; }
}

.cta-section .container {
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
}

@media (min-width: 640px) {
  .cta-section h2 { font-size: 2.25rem; }
}

.cta-section p {
  font-size: 1.125rem;
  margin: 0 0 2rem;
}

.cta-section.bg-primary {
  background: var(--primary);
  color: var(--white);
}

.cta-section.bg-primary p {
  color: var(--primary-100);
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer .logo-image {
  background: var(--white);
  border-radius: 9999px;
  padding: 0.15rem;
}

.footer p,
.footer a {
  color: var(--primary-100);
  font-size: 0.875rem;
}

.footer a:hover {
  color: var(--white);
}

.footer h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

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

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 0.875rem;
}

.footer-bottom a {
  margin: 0 1rem;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Utility */
.mt-12 { margin-top: 3rem; }
.mb-8 { margin-bottom: 2rem; }
.content-narrow {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.article p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--gray-600);
}

/* Blog post page */
.blog-hero {
  position: relative;
  height: 300px;
  background: var(--gray-900);
}
@media (min-width: 768px) { .blog-hero { height: 400px; } }
@media (min-width: 1024px) { .blog-hero { height: 500px; } }
.blog-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: flex-end;
}
.blog-hero-content {
  width: 100%;
  padding: 0 1rem 3rem;
}
@media (min-width: 768px) { .blog-hero-content { padding-bottom: 4rem; } }
.blog-hero a[href] {
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.blog-hero h1 {
  color: white;
  font-size: 1.875rem;
  margin: 0 0 1rem;
}
@media (min-width: 768px) { .blog-hero h1 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .blog-hero h1 { font-size: 3rem; } }
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
}
.prose {
  max-width: 65ch;
  font-size: 1.125rem;
  line-height: 1.75;
}
.prose .lead {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}
.prose h2 {
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
  color: var(--gray-900);
}
.prose h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--gray-900);
}
.prose p {
  margin: 0 0 1rem;
  color: var(--gray-600);
}
.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
  color: var(--gray-600);
}
.prose blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--primary);
  background: var(--gray-50);
  font-style: italic;
  color: var(--gray-700);
}
.prose a {
  color: var(--primary);
}
.prose a:hover {
  text-decoration: underline;
}
.blog-body .container {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .blog-body .container { grid-template-columns: 2fr 1fr; }
}
.blog-author {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: var(--radius);
}
.blog-author h3 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}
.blog-author p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
}
