:root {
  --purple: #460465;
  --orange: #ff5450;
  --pure: #e8e8e8;
  --light: #f4f4f4;
  --gray: #73767d;
  --lightgray: #acb0ba;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Titillium Web", sans-serif;
  background-color: var(--light);
  color: var(--gray);
  line-height: 1.6;
}

/* header {
  background-color: var(--purple);
  padding: 1.5rem 0;
  text-align: center;
  margin-bottom: 2rem;
} */

.see-more-btn {
  background-color: var(--orange);
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  transition: all 0.3s ease;
}
.logo {
  color: var(--pure);
  font-size: 2rem;
  text-transform: uppercase;
  border: 2px solid var(--pure);
  padding: 0.5rem 1.25rem;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.container {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

main {
  overflow: hidden;
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.post-title {
  font-size: 1.8rem;
  color: var(--purple);
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--pure);
}
img.post-image {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--lightgray);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}

.post-meta > * {
  margin-right: 1rem;
}

@media (max-width: 768px) {
  .post-meta {
    flex-direction: column;
  }

  .post-meta > * {
    margin-bottom: 0.5rem;
  }
}

.featured-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.post-content {
  margin-bottom: 1.5rem;
}

.social-share {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--pure);
}

.share-button {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.share-button:hover {
  background-color: var(--orange);
  color: white;
  transform: translateY(-2px);
}

aside {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sidebar-section {
  margin-bottom: 2rem;
}

.sidebar-title {
  font-size: 1.2rem;
  color: var(--purple);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--orange);
}

.sidebar-post {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
}

.sidebar-post:hover .sidebar-post-title {
  color: var(--orange);
}

.sidebar-post-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.25rem;
}

.sidebar-post-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  transition: color 0.3s ease;
}

.sidebar-post-meta {
  font-size: 0.8rem;
  color: var(--lightgray);
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .container {
    flex-direction: row;
    gap: 2rem;
  }

  main {
    flex: 2;
    margin-bottom: 0;
  }

  aside {
    flex: 1;
  }

  .post-title {
    font-size: 2.2rem;
  }

  .featured-image {
    height: 400px;
  }
}

/* ... (existing styles) ... */

.loading {
  text-align: center;
  font-style: italic;
  color: #666;
  padding: 20px;
}

.social-share {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 20px;
}

.share-button {
  background-color: #f0f0f0;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.share-button:hover {
  background-color: #e0e0e0;
}

.share-button i {
  font-size: 18px;
  color: #333;
}

/* ... (rest of the existing styles) ... */

/* Specific colors for each platform */
.share-button[onclick*="linkedin"] {
  background-color: #0077b5;
}
.share-button[onclick*="tiktok"] {
  background-color: #000000;
}
.share-button[onclick*="instagram"] {
  background: linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
}
.share-button[onclick*="threads"] {
  background-color: #000000;
}

.share-button[onclick*="linkedin"] i,
.share-button[onclick*="tiktok"] i,
.share-button[onclick*="instagram"] i,
.share-button[onclick*="threads"] i {
  color: white;
}

/* See more button styles */
.see-more-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.see-more-btn:hover {
  background-color: #0056b3;
}
