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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8fafc;
}

/* Header Styles */
.header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  text-decoration: none;
  transition: color 0.2s;
}

.logo:hover {
  color: #3b82f6;
}

.logo-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #3b82f6;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 2px;
  background: #3b82f6;
}

/* Mobile Navigation */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #64748b;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
}

/* Layout */
.main-content {
  min-height: calc(100vh - 64px - 80px);
}

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

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 3rem 0 2rem;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1e293b, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
}

/* Search Form */
.search-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.search-input-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.search-input-group input {
  flex: 1;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input-group input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.search-btn:active {
  transform: translateY(0);
}

/* Options Grid */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.option-label {
  font-weight: 600;
  color: #374151;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.radio-option:hover {
  background: #f8fafc;
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 18px;
  height: 18px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  position: relative;
  transition: border-color 0.2s;
}

.radio-option input[type="radio"]:checked + .radio-custom {
  border-color: #3b82f6;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
}

.select-input {
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.select-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Keyword Multiplier Styles */
.tool-container {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 3rem;
}

.multiplier-form {
  padding: 2rem;
}

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

.column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.column-label {
  font-weight: 600;
  color: #374151;
  font-size: 0.875rem;
}

.column textarea {
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.column textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.count {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

.multiplier-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.control-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-option input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  position: relative;
  transition: border-color 0.2s, background-color 0.2s;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom {
  border-color: #3b82f6;
  background: #3b82f6;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 5px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.generate-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-left: auto;
}

.generate-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.results-section {
  border-top: 1px solid #e2e8f0;
  padding: 2rem;
  background: #f8fafc;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.results-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #374151;
}

.results-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.total-count {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.copy-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #6366f1;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.copy-btn:hover:not(:disabled) {
  background: #4f46e5;
}

.copy-btn:disabled {
  background: #d1d5db;
  cursor: not-allowed;
}

#results {
  width: 100%;
  min-height: 200px;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.875rem;
  background: white;
  resize: vertical;
}

/* Info Section */
.info-section {
  padding: 3rem 0;
  background: #ffffff;
}

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

.info-card {
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

.info-card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.info-card p {
  color: #64748b;
  line-height: 1.6;
}

.info-card code {
  background: #e2e8f0;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  color: #1e293b;
}

/* Footer */
.footer {
  background: #1e293b;
  color: #94a3b8;
  padding: 2rem 0;
  text-align: center;
}

.footer code {
  background: #334155;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  color: #e2e8f0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .search-input-group {
    flex-direction: column;
  }
  
  .options-grid {
    grid-template-columns: 1fr;
  }
  
  .input-columns {
    grid-template-columns: 1fr;
  }
  
  .multiplier-controls {
    flex-direction: column;
    align-items: stretch;
  }
  
  .generate-btn {
    margin-left: 0;
  }
  
  .results-header {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-card {
  animation: fadeIn 0.6s ease-out;
}

.search-form {
  animation: fadeIn 0.4s ease-out;
}

.tool-container {
  animation: fadeIn 0.4s ease-out;
}

/* Meta Tag Generator Styles */
.meta-form {
  padding: 2rem;
}

.form-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.form-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 1rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 500;
  color: #374151;
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.char-count {
  font-size: 0.75rem;
  color: #64748b;
  text-align: right;
}

.form-group small {
  font-size: 0.75rem;
  color: #64748b;
}

/* Robots Generator Styles */
.robots-form {
  padding: 2rem;
}

.template-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.template-btn {
  padding: 0.5rem 1rem;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.template-btn:hover {
  background: #e2e8f0;
}

/* Schema Generator Styles */
.schema-form {
  padding: 2rem;
}

.schema-type-form {
  margin-top: 1rem;
}

/* URL Analyzer Styles */
.analyzer-form {
  padding: 2rem;
}

.analyze-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 1rem;
}

.analyze-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.analysis-results {
  border-top: 1px solid #e2e8f0;
  padding: 2rem;
  background: #f8fafc;
}

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

.result-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.result-card.full-width {
  grid-column: 1 / -1;
}

.result-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 1rem;
}

.score-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border: 4px solid #e2e8f0;
  margin: 0 auto;
}

.score-number {
  font-size: 2rem;
  font-weight: bold;
  color: #1e293b;
}

.score-label {
  font-size: 0.875rem;
  color: #64748b;
}

.url-breakdown,
.component-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.url-part,
.component-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.url-label {
  font-weight: 500;
  color: #64748b;
  min-width: 80px;
}

.url-value {
  color: #1e293b;
  word-break: break-all;
  text-align: right;
}

.issues-list,
.recommendations-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.issue-item,
.recommendation-item {
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
}

.issue-item {
  background: #fef2f2;
  color: #991b1b;
  border-left: 4px solid #ef4444;
}

.recommendation-item {
  background: #f0f9ff;
  color: #1e40af;
  border-left: 4px solid #3b82f6;
}

.success-message {
  padding: 0.75rem;
  background: #f0fdf4;
  color: #166534;
  border-radius: 6px;
  border-left: 4px solid #10b981;
  font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
  }
  
  .template-buttons {
    justify-content: center;
  }
}

/* HTTP Status Checker Styles */
.checker-form {
  padding: 2rem;
}

.checker-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.clear-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: #ef4444;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.clear-btn:hover {
  background: #dc2626;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  width: 0%;
  transition: width 0.3s ease;
}

.progress-info {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.export-buttons {
  display: flex;
  gap: 0.5rem;
}

.table-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  color: #64748b;
  text-align: center;
}

.table-placeholder svg {
  margin-bottom: 1rem;
  opacity: 0.5;
}

.status-table {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.table-header {
  display: grid;
  grid-template-columns: 60px 1fr 120px 100px 1fr;
  background: #f8fafc;
  border-bottom: 2px solid #e2e8f0;
  font-weight: 600;
  color: #374151;
}

.table-row {
  display: grid;
  grid-template-columns: 60px 1fr 120px 100px 1fr;
  border-bottom: 1px solid #f1f5f9;
  transition: background-color 0.2s;
}

.table-row:hover {
  background: #f8fafc;
}

.table-row:last-child {
  border-bottom: none;
}

.table-cell {
  padding: 0.75rem;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

.status-cell {
  justify-content: center;
}

.status-icon {
  font-size: 1.25rem;
}

.url-cell a {
  color: #3b82f6;
  text-decoration: none;
  word-break: break-all;
}

.url-cell a:hover {
  text-decoration: underline;
}

.status-code-cell {
  justify-content: center;
}

.status-badge {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.75rem;
  text-align: center;
  min-width: 60px;
}

.status-success {
  background: #dcfce7;
  color: #166534;
}

.status-redirect {
  background: #fef3c7;
  color: #92400e;
}

.status-client-error {
  background: #fecaca;
  color: #991b1b;
}

.status-server-error {
  background: #fecaca;
  color: #7f1d1d;
}

.status-error {
  background: #f3f4f6;
  color: #374151;
}

.details-cell {
  flex-direction: column;
  align-items: flex-start;
}

.details-cell small {
  color: #64748b;
  font-size: 0.75rem;
}

/* Responsive table */
@media (max-width: 768px) {
  .table-header,
  .table-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .table-cell {
    padding: 0.5rem;
    border-bottom: 1px solid #f1f5f9;
  }
  
  .table-cell:before {
    content: attr(data-label);
    font-weight: 600;
    color: #64748b;
    margin-right: 0.5rem;
  }
  
  .status-cell:before { content: "Status: "; }
  .url-cell:before { content: "URL: "; }
  .status-code-cell:before { content: "Code: "; }
  .details-cell:before { content: "Details: "; }
  
  .checker-controls {
    flex-direction: column;
    align-items: stretch;
  }
  
  .export-buttons {
    justify-content: center;
  }
}

/* Blog Styles */
.blog-container {
  margin-bottom: 3rem;
}

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

.blog-post {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-post:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.15);
}

.post-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-post:hover .post-image img {
  transform: scale(1.05);
}

.post-content {
  padding: 1.5rem;
}

.post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.post-date {
  color: #64748b;
  font-weight: 500;
}

.post-category {
  background: #e0f2fe;
  color: #0369a1;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 500;
  white-space: nowrap;
}

.post-content h2 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 600;
}

.post-content h2 a {
  color: #1e293b;
  text-decoration: none;
  transition: color 0.2s;
}

.post-content h2 a:hover {
  color: #3b82f6;
}

.post-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.read-more {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.read-more:hover {
  color: #1d4ed8;
}

/* Blog Section on Home Page */
.blog-section {
  padding: 3rem 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #64748b;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.view-all-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.view-all-link:hover {
  color: #1d4ed8;
}

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

.blog-preview {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-preview:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.preview-image {
  height: 150px;
  overflow: hidden;
}

.preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-preview:hover .preview-image img {
  transform: scale(1.05);
}

.preview-content {
  padding: 1.25rem;
}

.preview-date {
  color: #64748b;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: block;
  font-weight: 500;
}

.preview-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
}

.preview-content h3 a {
  color: #1e293b;
  text-decoration: none;
  transition: color 0.2s;
}

.preview-content h3 a:hover {
  color: #3b82f6;
}

.preview-content p {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-preview-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
}

/* Blog Post Single Styles */
.blog-post-single {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  margin-top: 2rem;
}

.post-header {
  padding: 2rem 2rem 0;
}

.post-header .post-meta {
  margin-bottom: 1rem;
  justify-content: flex-start;
}

.post-header h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.post-header .post-image {
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 0;
}

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

.blog-post-single .post-content {
  padding: 2rem;
  line-height: 1.7;
}

.blog-post-single .post-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin: 2rem 0 1rem;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 0.5rem;
}

.blog-post-single .post-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #374151;
  margin: 1.5rem 0 0.75rem;
}

.blog-post-single .post-content p {
  margin-bottom: 1.25rem;
  color: #374151;
}

.blog-post-single .post-content ul,
.blog-post-single .post-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.blog-post-single .post-content li {
  margin-bottom: 0.5rem;
  color: #374151;
}

.blog-post-single .post-content strong {
  color: #1e293b;
  font-weight: 600;
}

.post-footer {
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid #e2e8f0;
}

.back-to-blog {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.back-to-blog:hover {
  color: #1d4ed8;
}

/* Responsive blog post */
@media (max-width: 768px) {
  .post-header h1 {
    font-size: 1.75rem;
  }
  
  .post-header,
  .blog-post-single .post-content,
  .post-footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .post-header .post-image {
    height: 200px;
  }
}