/* Modern Geometric Design for DotsCo */

/* CSS Variables for consistent theming */
:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --secondary-color: #ec4899;
  --accent-color: #f59e0b;
  --background-light: #f8fafc;
  --background-white: #ffffff;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-light: #94a3b8;
  --border-color: #e2e8f0;
  --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --gradient-secondary: linear-gradient(135deg, #ec4899 0%, #f59e0b 100%);
  --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--background-light);
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Geometric Background Pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Header Styles */
.header {
  background: var(--background-white);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-light);
}

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

.logo .site-title {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo .site-tagline {
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  margin-top: -0.25rem;
  opacity: 0.9;
}

/* Main Content */
.main-content {
  padding: 2rem 0;
  min-height: calc(100vh - 200px);
}

.content-wrapper {
  background: var(--background-white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

/* Home Page Styles */
.home-page .hero {
  text-align: center;
  padding: 4rem 0;
  background: var(--gradient-primary);
  border-radius: 24px;
  color: white;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.home-page .hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-20px, -20px) rotate(180deg); }
}

.home-page .hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}

.home-page .hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.intro-content {
  margin-bottom: 3rem;
}

.intro-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

/* States Grid */
.states {
  margin-top: 4rem;
}

.states h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.state-card {
  background: var(--background-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
}

.state-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-large);
}

.state-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.state-card:hover::before {
  opacity: 1;
}

.state-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.state-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.state-card:hover img {
  transform: scale(1.05);
}

.state-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--text-primary);
}

.state-card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Links */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
  color: white;
  text-decoration: none;
}

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

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  text-decoration: none;
}

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

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

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section ul {
  list-style: none;
}

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

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  .content-wrapper {
    padding: 2rem;
    border-radius: 16px;
  }
  
  .home-page .hero h1 {
    font-size: 2.5rem;
  }
  
  .home-page .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .intro-content h2 {
    font-size: 2rem;
  }
  
  .states-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .states h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .home-page .hero {
    padding: 2rem 0;
  }
  
  .home-page .hero h1 {
    font-size: 2rem;
  }
  
  .content-wrapper {
    padding: 1.5rem;
  }
  
  .intro-content h2 {
    font-size: 1.75rem;
  }
  
  .intro-content p {
    font-size: 1rem;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Loading Animation */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.loading {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Focus States for Accessibility */
a:focus,
button:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .sticky-cta-container {
    display: none !important;
  }
  
  .content-wrapper {
    box-shadow: none;
    border: 1px solid #ccc;
  }
  
  body {
    background: white;
  }
}

/* Content Spacing */
.content {
  line-height: 1.7;
}

.content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-color);
}

.content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.content li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.content strong {
  color: var(--primary-color);
  font-weight: 600;
}

.content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.content a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Add more space between sections */
.content h2 + p,
.content h3 + p,
.content p + h2,
.content p + h3,
.content ul + h2,
.content ul + h3 {
  margin-top: 2rem;
}

/* FAQ specific styling */
.content h3 + p {
  margin-top: 1rem;
}

.content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Club Page Styles */
.club-page {
  background: var(--background-white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-color);
  margin: 2rem auto;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

.club-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

/* State Page Styles */
.state-page {
  background: var(--background-white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-color);
  margin: 2rem auto;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

.state-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

/* State Header */
.state-header {
  margin-bottom: 3rem;
  text-align: center;
}

.state-header h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.page-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Featured Image */
.featured-image {
  margin: 2rem 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  position: relative;
}

.featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-image:hover img {
  transform: scale(1.02);
}

/* State Meta */
.state-meta {
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.club-count {
  display: inline-block;
  background: var(--gradient-secondary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.state-meta span {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Different gradients for different metadata types */
.state-meta .address {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.state-meta .phone {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.state-meta .email {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.state-meta .website {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.state-meta .facebook {
  background: linear-gradient(135deg, #3b5998 0%, #8b9dc3 100%);
}

.state-meta .twitter {
  background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
}

.state-meta .instagram {
  background: linear-gradient(135deg, #e1306c 0%, #fd1d1d 50%, #fcb045 100%);
}

.state-meta .youtube {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.state-meta .fetlife {
  background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
}

.state-meta .kik {
  background: linear-gradient(135deg, #5ce1e6 0%, #00d4aa 100%);
}

.state-meta .snapchat {
  background: linear-gradient(135deg, #fffc00 0%, #ff8c00 100%);
  color: #333;
}

.state-meta span a {
  color: inherit;
  text-decoration: none;
}

.state-meta span a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Dark mode adjustments */
.dark-mode .state-meta .snapchat {
  color: #333;
}

.dark-mode .state-meta span a {
  color: inherit;
}

/* TOC Styles */
.toc-container {
  background: var(--background-light);
  border-radius: 16px;
  margin: 2rem 0;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.toc-header {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.toc-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: white;
}

.toc-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.toc-toggle:hover {
  transform: scale(1.1);
}

.toc-content {
  padding: 1.5rem;
  display: block;
}

.toc-content.active {
  display: block;
}

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

.toc-list li {
  margin-bottom: 0.75rem;
  padding-left: 0;
  display: flex;
  align-items: center;
  text-align: left;
}

.toc-list a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  flex: 1;
}

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

.toc-number {
  color: var(--primary-color);
  font-weight: 600;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.toc-level-2 {
  font-size: 1rem;
}

.toc-level-3 {
  font-size: 0.9rem;
  padding-left: 1rem;
  color: var(--text-secondary);
}

/* Cities Grid */
.top-cities {
  margin: 3rem 0;
}

.top-cities h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.city-card {
  background: var(--background-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
}

.city-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-large);
}

.city-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.city-card:hover::before {
  opacity: 1;
}

.city-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.city-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.city-card:hover img {
  transform: scale(1.05);
}

.city-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--text-primary);
}

.city-card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Direct Clubs Grid */
.direct-clubs {
  margin: 3rem 0;
}

.direct-clubs h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.clubs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.club-card {
  background: var(--background-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
}

.club-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-large);
}

.club-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.club-card:hover::before {
  opacity: 1;
}

.club-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.club-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.club-card:hover img {
  transform: scale(1.05);
}

.club-info {
  padding: 1.5rem;
}

.club-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.club-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.club-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating {
  background: var(--gradient-accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Responsive adjustments for state pages */
@media (max-width: 768px) {
  .state-page {
    padding: 2rem;
    border-radius: 16px;
  }
  
  .state-header h1 {
    font-size: 2.5rem;
  }
  
  .page-description {
    font-size: 1.1rem;
  }
  
  .featured-image img {
    height: 250px;
  }
  
  .cities-grid,
  .clubs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .top-cities h2,
  .direct-clubs h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .state-page {
    padding: 1.5rem;
  }
  
  .state-header h1 {
    font-size: 2rem;
  }
  
  .featured-image img {
    height: 200px;
  }
  
  .toc-header {
    padding: 0.75rem 1rem;
  }
  
  .toc-content {
    padding: 1rem;
  }
}

/* Breadcrumb Navigation */
.breadcrumbs {
  background: var(--background-white);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  font-size: 0.95rem;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb-list li:not(:last-child)::after {
  content: '/';
  color: var(--text-light);
  margin-left: 0.5rem;
}

.breadcrumb-list a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.breadcrumb-list a:hover {
  background: rgba(99, 102, 241, 0.1);
  text-decoration: underline;
}

.breadcrumb-list li.current {
  color: var(--text-secondary);
  font-weight: 600;
}

/* Author Information Styles */
.author-info {
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 2px solid var(--border-color);
}

.author-card {
  background: var(--background-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-color);
  max-width: 600px;
  margin: 0 auto;
}

.author-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.author-card p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.author-card p:last-child {
  margin-bottom: 0;
}

.author-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.author-card a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Responsive Author Styles */
@media (max-width: 768px) {
  .author-card {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  
  .author-card h3 {
    font-size: 1.25rem;
  }
}
