/*
Theme Name: Yunus Emre Ekmekci Theme
Theme URI: https://example.com
Author: Antigravity
Author URI: https://example.com
Description: Custom pixel-perfect theme for personal blog and portfolio.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yee-theme
*/

:root {
  /* Colors - Derived from screenshots */
  --color-primary: #0f172a;
  /* Dark Navy Background */
  --color-secondary: #0ea5e9;
  /* Blue accents */
  --color-text-main: #334155;
  /* Dark gray text */
  --color-text-light: #64748b;
  /* Light gray text */
  --color-bg-light: #f8fafc;
  /* Light background */
  --color-white: #ffffff;
  --color-success: #22c55e;

  /* Font Family */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;

  /* Spacing */
  --spacing-container: 1200px;
  --spacing-gutter: 1rem;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

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

/* Constants/Utilities */
.container {
  max-width: var(--spacing-container);
  margin: 0 auto;
  padding: 0 var(--spacing-gutter);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}

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

/* Navigation */
.site-header {
  padding: 1.5rem 0;
  background-color: var(--color-bg-light);
}

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

.site-title a {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-light);
}

.nav-menu a:hover {
  color: var(--color-secondary);
}

.header-cta.btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
}

/* Hero Section */
.hero-section {
  padding: 4rem 0;
}

.hero-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-secondary);
  /* Based on "E-Ticaret Uzmanı" blue */
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-text-main);
  margin-bottom: 2rem;
  max-width: 480px;
}

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

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-image-placeholder {
  width: 400px;
  height: 400px;
  background-color: #e2e8f0;
  border-radius: 50%;
  position: relative;
  /* Ideally background-image here */
}

.experience-badge {
  position: absolute;
  bottom: 10px;
  right: 20px;
  /* Adjusting position to overlap circle edge */
  background: white;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.experience-badge .icon {
  font-size: 1.5rem;
}

.experience-badge .text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.experience-badge small {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

.experience-badge strong {
  font-size: 1.1rem;
  color: var(--color-primary);
}

/* Newsletter Section */
.newsletter-section {
  padding: 4rem 0;
}

.newsletter-box {
  background-color: #eff6ff;
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-secondary);
}

.newsletter-box h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.newsletter-box p {
  color: var(--color-text-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border: 1px solid #cbd5e1;
  border-radius: 9999px;
  outline: none;
}

/* Content Grid */
.content-grid-section {
  padding: 4rem 0;
}

.icon-grid-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  /* approximate ratio */
  gap: 2rem;
}

.agenda-card {
  background-color: #e0f2fe;
  /* light blue */
  padding: 2rem;
  border-radius: 16px;
  height: 100%;
}

.agenda-title {
  font-size: 1.5rem;
  color: var(--color-secondary);
  margin-bottom: 3rem;
  /* Spacing for visual look */
}

.tag {
  background: var(--color-secondary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.date {
  font-size: 0.8rem;
  color: #64748b;
  margin-left: auto;
}

.agenda-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.featured-blogs .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.featured-blogs h3 {
  font-size: 1.5rem;
}

.featured-blogs a {
  color: var(--color-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.blog-card-mini {
  background: var(--color-bg-light);
  /* Or white if bg is grey */
  background: #f1f5f9;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.blog-card-mini h4 {
  font-size: 1.1rem;
  color: var(--color-text-main);
}

/* Tools Section */
.tools-section {
  padding: 4rem 0;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.tool-card {
  padding: 2rem;
  border-radius: 16px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tool-card--orange {
  background-color: #fff7ed;
}

.tool-card--green {
  background-color: #f0fdf4;
}

.tool-card--purple {
  background-color: #fce7f3;
}

.tool-card h3 {
  color: var(--color-text-main);
  /* Or specific color per card */
  font-size: 1.5rem;
  text-align: center;
  /* Visual tweaks to match exact screenshot layout specific styling */
}

.tool-card--orange h3 {
  color: #c2410c;
}

.tool-card--green h3 {
  color: #15803d;
}

.tool-card--purple h3 {
  color: #7e22ce;
}

.tool-meta {
  margin-top: auto;
}

.tool-meta .cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-secondary);
  display: block;
  margin-bottom: 0.5rem;
}

.tool-meta h4 {
  font-size: 1.1rem;
  line-height: 1.4;
}

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

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

.site-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.site-info p {
  color: #94a3b8;
  font-size: 0.9rem;
}

.site-copyright {
  color: #64748b;
  font-size: 0.85rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #22c55e;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

/* Responsive */
@media (max-width: 768px) {
  .site-header__inner {
    flex-wrap: wrap;
  }

  .main-navigation {
    display: none;
    /* simple toggle placeholder */
  }

  .menu-toggle {
    display: block;
  }

  .hero-section__inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-image-placeholder {
    width: 280px;
    height: 280px;
  }

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

  .icon-grid-layout,
  .blog-grid,
  .tools-grid {
    grid-template-columns: 1fr;
  }
}

/* --- About Page Styles --- */
.about-page-container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.page-header {
  margin-bottom: 4rem;
  text-align: center;
}

.page-title {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.page-subtitle {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.about-section {
  margin-bottom: 2rem;
}

/* Summary Card */
.summary-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.summary-content {
  flex: 2;
}

.summary-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.profile-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #94a3b8;
  font-weight: 700;
  border: 4px solid white;
  box-shadow: 0 0 0 10px #f8fafc;
}

.summary-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--color-secondary);
}

.summary-header h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
}

.summary-text p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #0077b5;
  border-radius: 6px;
  font-size: 0.9rem;
}

/* Timeline/Experience */
.section-card,
.info-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  /* Adjusted for nested look */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.experience-section .section-card {
  padding: 3rem;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  color: var(--color-secondary);
}

.card-header h3 {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin: 0;
}

.timeline {
  position: relative;
  border-left: 2px solid #e2e8f0;
  margin-left: 1rem;
  padding-left: 2rem;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -2.6rem;
  top: 0.25rem;
  width: 1rem;
  height: 1rem;
  background: var(--color-secondary);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 2px #e2e8f0;
}

.timeline-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.timeline-head h4 {
  font-size: 1.1rem;
  color: var(--color-primary);
}

.date-badge {
  background-color: #f1f5f9;
  color: var(--color-secondary);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.company {
  font-weight: 500;
  color: var(--color-text-main);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.timeline-content p:last-child {
  color: #64748b;
  font-size: 0.9rem;
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.info-list li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}

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

.info-list strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.info-list small {
  color: #94a3b8;
  font-size: 0.8rem;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tags-cloud span {
  background: #f8fafc;
  color: var(--color-text-main);
  border: 1px solid #e2e8f0;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* --- Contact Page Styles --- */
.contact-page-container {
  max-width: 800px;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.method-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  border: 1px solid #e2e8f0;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 500;
  color: var(--color-text-main);
  transition: all 0.3s ease;
}

.method-card:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-text-main);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-secondary);
}

.btn-full {
  width: 100%;
  border-radius: 8px;
}

/* Responsive Inner */
@media (max-width: 768px) {
  .summary-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .summary-header {
    justify-content: center;
  }

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

  .timeline-head {
    flex-direction: column;
    gap: 0.25rem;
  }

  .contact-methods {
    flex-direction: column;
  }
}/* --- About Page Styles --- */
.about-page-container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.page-header {
    margin-bottom: 4rem;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.page-subtitle {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 2rem;
}

/* Summary Card */
.summary-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.summary-content {
    flex: 2;
}

.summary-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.profile-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #94a3b8;
    font-weight: 700;
    border: 4px solid white;
    box-shadow: 0 0 0 10px #f8fafc;
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.summary-header h3 {
    font-size: 1.25rem;
    color: var(--color-primary);
}

.summary-text p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.btn-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #0077b5;
    border-radius: 6px;
    font-size: 0.9rem;
}

/* Timeline/Experience */
.section-card,
.info-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    /* Adjusted for nested look */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.experience-section .section-card {
    padding: 3rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    color: var(--color-secondary);
}

.card-header h3 {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin: 0;
}

.timeline {
    position: relative;
    border-left: 2px solid #e2e8f0;
    margin-left: 1rem;
    padding-left: 2rem;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2.6rem;
    top: 0.25rem;
    width: 1rem;
    height: 1rem;
    background: var(--color-secondary);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 2px #e2e8f0;
}

.timeline-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.timeline-head h4 {
    font-size: 1.1rem;
    color: var(--color-primary);
}

.date-badge {
    background-color: #f1f5f9;
    color: var(--color-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.company {
    font-weight: 500;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.timeline-content p:last-child {
    color: #64748b;
    font-size: 0.9rem;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

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

.info-list strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.info-list small {
    color: #94a3b8;
    font-size: 0.8rem;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tags-cloud span {
    background: #f8fafc;
    color: var(--color-text-main);
    border: 1px solid #e2e8f0;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* --- Contact Page Styles --- */
.contact-page-container {
    max-width: 800px;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.method-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    border: 1px solid #e2e8f0;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 500;
    color: var(--color-text-main);
    transition: all 0.3s ease;
}

.method-card:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text-main);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-secondary);
}

.btn-full {
    width: 100%;
    border-radius: 8px;
}

/* --- Blog & Archive Styles --- */
.blog-archive-container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.archive-description {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-text-light);
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

/* Blog Feed */
.blog-post-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.blog-post-card:hover {
    transform: translateY(-2px);
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 400px;
}

.post-content {
    padding: 2rem;
}

.entry-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.entry-title a {
    color: var(--color-primary);
}

.entry-title a:hover {
    color: var(--color-secondary);
}

.entry-meta {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.entry-summary {
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
}

/* Sidebar */
.widget-area {
    padding-top: 0.5rem;
}

.widget {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
}

.widget-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 0.5rem;
}

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

.widget ul li {
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #f8fafc;
    padding-bottom: 0.5rem;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: var(--color-text-main);
    font-size: 0.95rem;
}

.widget ul li a:hover {
    color: var(--color-secondary);
}

/* Search Form */
.search-form {
    display: flex;
}

.search-form label {
    flex: 1;
}

.search-field {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
}

.search-submit {
    background: var(--color-secondary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 0.5rem;
}

/* Pagination */
.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: var(--color-text-main);
    border: 1px solid #e2e8f0;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--color-secondary);
    color: white;
    border-color: var(--color-secondary);
}

/* Single Post */
.single-post-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.single-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.single-thumbnail {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.entry-content {
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h2,
.entry-content h3 {
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-footer {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.tags-links a {
    display: inline-block;
    background: #f1f5f9;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #64748b;
    margin-right: 0.5rem;
}

/* Responsive Blog */
@media (max-width: 900px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
}

/* Responsive Inner */
@media (max-width: 768px) {
    .summary-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .summary-header {
        justify-content: center;
    }

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

    .timeline-head {
        flex-direction: column;
        gap: 0.25rem;
    }

    .contact-methods {
        flex-direction: column;
    }
}
