/* Base Styles */
:root {
  --primary: #4a5568;
  --primary-dark: #2d3748;
  --primary-light: #718096;
  --secondary: #805ad5;
  --secondary-dark: #6b46c1;
  --secondary-light: #9f7aea;
  --accent: #d53f8c;
  --accent-dark: #b83280;
  --accent-light: #ed64a6;
  --text-dark: #2d3748;
  --text-light: #718096;
  --text-lighter: #a0aec0;
  --white: #ffffff;
  --off-white: #f7fafc;
  --gray-100: #f7fafc;
  --gray-200: #edf2f7;
  --gray-300: #e2e8f0;
  --gray-400: #cbd5e0;
  --gray-500: #a0aec0;
  --gray-600: #718096;
  --gray-700: #4a5568;
  --gray-800: #2d3748;
  --gray-900: #1a202c;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
  --radius: 0.375rem;
  --radius-lg: 0.5rem;
  --font-main: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --container-width: 1200px;
  --content-width: 800px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}

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

a:hover {
  color: var(--secondary-dark);
}

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

ul, ol {
  list-style-position: inside;
  margin-bottom: 1.5rem;
}

blockquote {
  border-left: 4px solid var(--secondary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-light);
}

blockquote p {
  margin-bottom: 0.5rem;
}

blockquote cite {
  font-size: 0.875rem;
  font-style: normal;
  color: var(--gray-600);
  display: block;
  margin-top: 0.5rem;
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.5;
}

.btn:hover {
  background-color: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

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

.btn-outline:hover {
  background-color: var(--secondary);
  color: var(--white);
}

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

nav ul {
  display: flex;
  margin: 0;
  list-style: none;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding-bottom: 0.25rem;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--secondary);
}

nav ul li a.active::after,
nav ul li a:hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background-color: var(--gray-100);
  padding: 5rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* Featured Posts Section */
.featured-posts {
  padding: 5rem 0;
}

.featured-posts h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.post-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.post-content {
  padding: 1.5rem;
}

.post-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.post-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.read-more {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  color: var(--secondary);
}

.read-more:hover {
  color: var(--secondary-dark);
}

.read-more::after {
  content: "→";
  margin-left: 0.25rem;
  transition: var(--transition);
}

.read-more:hover::after {
  margin-left: 0.5rem;
}

/* Newsletter Section */
.newsletter {
  background-color: var(--gray-100);
  padding: 4rem 0;
  text-align: center;
}

.newsletter h2 {
  margin-bottom: 1rem;
}

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

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: var(--font-main);
  font-size: 1rem;
}

.newsletter-form button {
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--box-shadow);
  position: relative;
}

.quote {
  color: var(--gray-300);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-dark);
}

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

/* Footer Styles */
footer {
  background-color: var(--gray-800);
  color: var(--gray-300);
  padding: 4rem 0 2rem;
}

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

.footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-links h3,
.footer-contact h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

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

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

.footer-links ul li a {
  color: var(--gray-400);
  transition: var(--transition);
}

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

.footer-contact p {
  margin-bottom: 0.75rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--gray-700);
  color: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  color: var(--gray-500);
  border-top: 1px solid var(--gray-700);
  padding-top: 2rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--gray-800);
  color: var(--white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

.cookie-content {
  padding: 1.5rem;
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-content p {
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cookie-policy-link {
  color: var(--gray-400);
  font-size: 0.875rem;
  text-decoration: underline;
}

.cookie-policy-link:hover {
  color: var(--white);
}

/* Page Header */
.page-header {
  background-color: var(--gray-100);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Blog Page */
.blog-content {
  padding: 4rem 0;
}

.blog-filters {
  margin-bottom: 3rem;
}

.search-bar {
  display: flex;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.search-bar input {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: var(--font-main);
  font-size: 1rem;
}

.search-bar button {
  background-color: var(--secondary);
  color: var(--white);
  border: none;
  padding: 0 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  transition: var(--transition);
}

.search-bar button:hover {
  background-color: var(--secondary-dark);
}

.filter-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-btn {
  background-color: transparent;
  border: 1px solid var(--gray-300);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.blog-image {
  height: 240px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.blog-meta {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.5rem 0;
  font-size: 0.875rem;
  color: var(--text-light);
}

.blog-content {
  padding: 1rem 1.5rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

.blog-content .read-more {
  margin-top: auto;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background-color: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.pagination-btn:hover,
.pagination-btn.active {
  background-color: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.pagination-btn.next {
  width: auto;
  padding: 0 1rem;
}

/* Contact Page */
.contact-content {
  padding: 4rem 0;
}

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

.contact-info {
  color: var(--text-light);
}

.contact-info h2 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-100);
  color: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
}

.info-text h3 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.social-links h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--gray-100);
  color: var(--secondary);
  border-radius: 50%;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--secondary);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-form-container {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px rgba(128, 90, 213, 0.2);
}

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

.checkbox-group input {
  width: auto;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  color: var(--text-light);
}

.submit-btn {
  align-self: flex-start;
}

.map-section {
  padding: 3rem 0 5rem;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

/* Thank You Modal */
.thank-you-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal-content {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 500px;
  width: 90%;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-500);
}

.success-icon {
  color: #48bb78;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.modal-content h2 {
  margin-bottom: 1rem;
}

.modal-content p {
  margin-bottom: 2rem;
}

/* About Page */
.about-mission {
  padding: 4rem 0;
}

.about-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-values {
  background-color: var(--gray-100);
  padding: 5rem 0;
}

.about-values h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.value-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

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

.value-icon {
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.value-card h3 {
  margin-bottom: 1rem;
}

.team-section {
  padding: 5rem 0;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--text-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 3rem;
}

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

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  box-shadow: var(--box-shadow);
}

.team-card h3 {
  margin-bottom: 0.25rem;
}

.team-card p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.team-card p:nth-of-type(1) {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--gray-100);
  color: var(--secondary);
  border-radius: 50%;
  transition: var(--transition);
}

.team-social a:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.timeline {
  padding: 5rem 0;
  background-color: var(--gray-100);
}

.timeline h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-wrapper::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--gray-300);
  transform: translateX(-50%);
}

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

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: var(--secondary);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-content {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--box-shadow);
  width: calc(50% - 40px);
  position: relative;
}

.timeline-content::after {
  content: '';
  position: absolute;
  top: 10px;
  width: 20px;
  height: 2px;
  background-color: var(--gray-300);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-item:nth-child(odd) .timeline-content::after {
  left: -20px;
}

.timeline-item:nth-child(even) .timeline-content::after {
  right: -20px;
}

.timeline-content h3 {
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.timeline-content p {
  margin-bottom: 0;
}

.cta-section {
  padding: 5rem 0;
  background-color: var(--primary-dark);
  color: var(--white);
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--gray-300);
  margin-bottom: 2rem;
}

.cta-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.cta-form input {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: var(--font-main);
  font-size: 1rem;
}

.cta-form button {
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* Post Content */
.post-content {
  padding: 4rem 0;
}

.post-content .container {
  max-width: var(--content-width);
}

.post-header {
  margin-bottom: 3rem;
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 0.875rem;
}

.post-header h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.post-featured-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.post-body {
  margin-bottom: 3rem;
}

.post-intro {
  font-size: 1.25rem;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 2rem;
}

.post-image-inline {
  margin: 2.5rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.image-caption {
  text-align: center;
  color: var(--text-light);
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  background-color: var(--gray-100);
  margin-top: 0;
  margin-bottom: 0;
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 3rem;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.tag-label {
  color: var(--text-light);
  font-weight: 600;
}

.tag {
  background-color: var(--gray-100);
  color: var(--text-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  transition: var(--transition);
}

.tag:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.post-share {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.post-share span {
  color: var(--text-light);
  font-weight: 600;
}

.share-buttons {
  display: flex;
  gap: 0.75rem;
}

.share-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--gray-100);
  color: var(--text-light);
  border-radius: 50%;
  transition: var(--transition);
}

.share-buttons a:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.author-bio {
  display: flex;
  gap: 2rem;
  background-color: var(--gray-100);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
}

.author-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.author-info h3 {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.author-info h4 {
  margin-bottom: 0.75rem;
}

.author-info p {
  margin-bottom: 0;
  color: var(--text-light);
}

.related-posts {
  margin-bottom: 3rem;
}

.related-posts h3 {
  margin-bottom: 2rem;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.related-post {
  display: flex;
  flex-direction: column;
}

.related-image {
  height: 160px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
}

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

.related-post h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.related-post a {
  color: var(--text-dark);
}

.related-post a:hover {
  color: var(--secondary);
}

.related-excerpt {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.post-comments h3 {
  margin-bottom: 2rem;
}

.comments-section {
  margin-bottom: 3rem;
}

.comment {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.comment-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-content {
  flex-grow: 1;
}

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

.comment-header h4 {
  margin-bottom: 0;
}

.comment-date {
  color: var(--text-light);
  font-size: 0.875rem;
}

.comment-content p {
  margin-bottom: 0.75rem;
}

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

.comment-reply {
  background: none;
  border: none;
  color: var(--secondary);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-main);
  font-size: 0.875rem;
}

.comment-form h3 {
  margin-bottom: 1.5rem;
}

/* Interview Style */
.interview-section {
  margin-bottom: 3rem;
}

.interview-section h2 {
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  font-size: 1.75rem;
}

.interview-q-and-a {
  margin-bottom: 2rem;
}

.interview-question {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.interview-answer {
  margin-bottom: 1rem;
}

.interview-answer:last-child {
  margin-bottom: 0;
}

.interview-conclusion {
  font-style: italic;
  color: var(--text-light);
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

/* Exhibition Style */
.exhibition-section {
  margin-bottom: 4rem;
}

.exhibition-section h2 {
  margin-bottom: 2rem;
  color: var(--primary-dark);
  font-size: 1.75rem;
}

.exhibition-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  margin-bottom: 2rem;
}

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

.exhibition-details h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.exhibition-meta {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.exhibition-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--secondary);
}

.exhibition-link:hover {
  color: var(--secondary-dark);
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .post-header h1 {
    font-size: 2.25rem;
  }
  
  .timeline-wrapper::before {
    left: 30px;
  }
  
  .timeline-dot {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }
  
  .timeline-item:nth-child(odd) .timeline-content::after,
  .timeline-item:nth-child(even) .timeline-content::after {
    left: -20px;
    right: auto;
  }
  
  .post-footer {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav ul {
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 0.75rem;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .featured-posts,
  .testimonials,
  .newsletter,
  .about-mission,
  .about-values,
  .team-section,
  .timeline,
  .cta-section,
  .contact-content,
  .post-content {
    padding: 3rem 0;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 1rem;
  }
  
  .newsletter-form input,
  .newsletter-form button,
  .cta-form input,
  .cta-form button {
    width: 100%;
    border-radius: var(--radius);
  }
  
  .author-bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  
  .comment {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .comment-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

@media (max-width: 576px) {
  .posts-grid,
  .testimonial-grid,
  .blog-grid,
  .values-grid,
  .team-grid,
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .filter-categories {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-btn {
    width: 100%;
    max-width: 300px;
  }
}
