.hero {
  background: radial-gradient(circle, transparent, #000000e6) url("https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fwww.essence.com%2Fwp-content%2Fuploads%2F2019%2F12%2FGettyImages-647604318.jpg&f=1&nofb=1&ipt=2e0174f3722d78892d699b0b678420a8bdbc56194d6f8fd43c7eb16340cce6de");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero h1 {
  z-index: 50;
  font-size: 3.8rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-family: "Inter", sans-serif;
  opacity: 0.95;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-hero-primary {
  background: white;
  color: var(--dark);
  padding: 16px 42px;
  border-radius: 0;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  border: 1px solid white;
}

.btn-hero-primary:hover {
  background: transparent;
  color: white;
  transform: none;
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 16px 42px;
  border-radius: 0;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.btn-hero-secondary:hover {
  background: white;
  color: var(--dark);
  border-color: white;
  transform: none;
}

.hero-card {
  display: inline-block;
  padding: 2rem;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  color: white;
  position: relative;
  z-index: 10;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
}

.hero-card h1 {
  font-size: 5rem;
  font-family: "Playfair Display", serif;
  /* font-style: italic; */
  /* font-weight: 400; */
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 900ms ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.8) 100%);
  mix-blend-mode: normal;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
  pointer-events: auto;
}

.hero-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.hero-dot.active {
  background: white;
  transform: scale(1.15);
}

.hero-dot:hover {
  transform: scale(1.25);
  background: rgba(255, 255, 255, 0.95);
}

.hero-dot:focus {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.about-preview {
  background: var(--light);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  justify-content: center;
}

.about-image {
  margin-top: 40px;
  height: 100%;
  width: 100%;
  border-radius: 12px;
  background-image: url("https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fwww.essence.com%2Fwp-content%2Fuploads%2F2019%2F12%2FGettyImages-647604318.jpg&f=1&nofb=1&ipt=2e0174f3722d78892d699b0b678420a8bdbc56194d6f8fd43c7eb16340cce6de");
  background-size: cover;
  background-position: bottom;
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.699);
  border-radius: inherit;
}

.image-placeholder {
  position: relative;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.about-text h2 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.about-text p {
  font-family: "Inter", sans-serif;
  line-height: 1.8;
  font-weight: 300;
}

.classes-preview {
  background: linear-gradient(135deg,
      var(--light) 0%,
      rgba(248, 247, 244, 0.8) 100%);
  position: relative;
}

.classes-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

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

.section-header .section-title {
  margin-bottom: 1.5rem;
}

.section-header .section-subtitle {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 auto;
  font-weight: 300;
  opacity: 0.9;
}

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

.class-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.class-card:hover {
  transform: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.15);
}

.class-card-header {
  position: relative;
  overflow: hidden;
}

.class-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 0;
  font-size: 0.7rem;
  font-weight: 400;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.class-badge-new {
  background: var(--accent);
  color: rgb(0, 0, 0);
}

.class-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.class-card:nth-child(1) .class-image {
  background-image: url("https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fcdn.stayhappening.com%2Fevents7%2Fbanners%2F4f90789c8d3821a96660b9b1440be2f7e8f11943ea301f13b1561c5c95d6f160-rimg-w1200-h2141-dc44362d-gmir.jpg%3Fv%3D1741123063&f=1&nofb=1&ipt=4e721a63190616d41f39223be1c9077df94deee0e00f81ef379296b9aa6d73e9");
}

.class-card:nth-child(2) .class-image {
  background-image: url("https://images.pexels.com/photos/3757649/pexels-photo-3757649.jpeg");
  background-image: url("https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fx10therapy.com%2Fwp-content%2Fuploads%2F2017%2F03%2FAdobeStock_72390857.jpeg%3Fb926fd%26b926fd&f=1&nofb=1&ipt=c7204170ab79b3f80453ec12ec2b701cbde4523357fd7066c52519d721db9626");
}

.class-card:nth-child(3) .class-image {
  background-image: url("https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fblackdoctor.org%2Fwp-content%2Fuploads%2F2020%2F01%2FGettyImages-507850809.jpg&f=1&nofb=1&ipt=a4197fe16ed1b7d6279b9e0009ea0d5fca7009a859781523cb389b0eb92d0886");
}

.class-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.class-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2;
}

.class-duration,
.class-intensity {
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  padding: 0.4rem 0.9rem;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 400;
  backdrop-filter: blur(10px);
  letter-spacing: 0.5px;
}

.class-content {
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  flex: 1;
}

.class-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 400;
}

.meta-item i {
  font-size: 1rem;
}

.class-content h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.class-content p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.8;
  font-weight: 300;
}

.class-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: flex-start;
}

.feature-tag {
  background: rgba(139, 107, 126, 0.08);
  color: var(--primary);
  padding: 0.4rem 0.9rem;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 400;
  border: 1px solid rgba(139, 107, 126, 0.15);
  letter-spacing: 0.5px;
}

.class-actions {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.class-actions .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 28px;
  font-size: 0.75rem;
}

.classes-cta {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
    url("https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fimages.ctfassets.net%2F4f3rgqwzdznj%2F4RhNlPxGDxslNljmLS2dSr%2F4cbaf720cebc89659c513215f6581233%2FGettyImages-1195045259.jpg&f=1&nofb=1&ipt=78b97831c8679139bcba9d7eed78270a152b60133683bde4a1c5c44eaa79e15e");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 3rem 2rem;
  border-radius: var(--radius);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cta-content>p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-large {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-shadow: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-large:hover {
  background: white;
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.testimonials {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
    url("https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fimages.rawpixel.com%2Fimage_social_landscape%2FcHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDI0LTAzL3NtYWxsZGVzaWduY29tcGFueTAxX3Bob3RvX29mX2FfYmxhY2tfc291dGhfYWZyaWNhbl93b21hbl93b3Jrb181NGNiZjgwMy05Njc2LTQxNTAtOWQxNi1mZmYyYTZjNjU5NzlfMS5qcGc.jpg&f=1&nofb=1&ipt=fa70b426a5a63d72943dedd4b742505cdfd3a6b6d21230743c2bc572b6a920e9");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

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

.testimonials-header .section-title {
  margin-bottom: 1.5rem;
  color: white;
}

.testimonials-header .section-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.8;
}

.testimonials-carousel {
  position: relative;
  margin: 0 auto 3rem;
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonials-track {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  gap: 2rem;
  padding: 1rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1.33rem);
  min-width: 0;
  background: white;
  border-radius: 0;
  padding: 3rem;
  box-shadow: none;
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0.6;
  transform: scale(0.98);
  overflow: hidden;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.testimonial-card.active::before {
  transform: scaleX(1);
}

.testimonial-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(139, 107, 126, 0.1);
}

.stars {
  display: flex;
  gap: 0.2rem;
}

.stars i {
  color: #ffc107;
  font-size: 1rem;
}

.rating-text {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-content {
  position: relative;
}

.quote-icon {
  position: absolute;
  top: -1rem;
  left: -1rem;
  color: rgba(139, 107, 126, 0.1);
  font-size: 4rem;
  z-index: 1;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  font-style: normal;
  font-weight: 300;
  opacity: 0.85;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(139, 107, 126, 0.1);
}

.author-info h4 {
  margin: 0 0 0.3rem 0;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.author-info>p {
  margin: 0 0 0.8rem 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

.author-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.badge {
  background: rgba(139, 107, 126, 0.08);
  color: var(--primary);
  padding: 0.3rem 0.7rem;
  border-radius: 0;
  font-size: 0.7rem;
  font-weight: 400;
  border: 1px solid rgba(139, 107, 126, 0.15);
  letter-spacing: 0.5px;
}

.carousel-btn {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  background: white;
  color: var(--primary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: none;
}

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

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

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

.testimonials-stats {
  padding: 4rem 2rem;
  margin-bottom: 4rem;
}

.stat-icon {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  display: block;
}

.stats-grid {
  position: relative;
  z-index: 2;
}

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

.stat-item {
  flex: 1;
  text-align: center;
  padding: 1rem 0.5rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 400;
  color: white;
  font-family: "Inter", sans-serif;
  margin-bottom: 0.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.9rem;
  color: white;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.85;
}

.testimonials-cta {
  position: relative;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 1366px) {
  .hero {
    height: calc(100vh - 100px);
  }
}

@media (max-width: 768px) {
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-icon {
    width: 35px;
    height: 35px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .testimonials-stats {
    padding: 3rem 1.5rem;
  }

  .testimonials-cta {
    padding: 3rem 1.5rem;
  }

  .newsletter h2 {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-icon {
    width: 30px;
    height: 30px;
  }

  .testimonials-cta h3 {
    font-size: 1.8rem;
  }

  .testimonials-stats {
    padding: 2rem 1rem;
  }

  .testimonials-cta {
    padding: 2rem 1rem;
  }
}

@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  /* .hero {
    height: 100dvh;
  } */

  .hero-dot {
    width: 5px;
    height: 5px;
  }

  .hero-card {
    padding: 1.6rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-card p:not(.hero-subtitle) {
    display: none;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero-secondary {
    display: none;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .classes-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .class-actions {
    flex-direction: column;
  }

  .cta-stats {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .classes-cta {
    padding: 3rem 1.5rem;
  }

  .cta-content {
    padding: 1.5rem;
  }

  .cta-content h3 {
    font-size: 1.8rem;
  }

  .cta-content>p {
    font-size: 1.1rem;
  }

  .class-image {
    height: 180px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .testimonials-carousel {
    gap: 0.5rem;
  }

  .testimonial-card {
    flex: 0 0 100%;
    padding: 2rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 3rem;
  }

  section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .class-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .author-info {
    text-align: center;
  }

  .author-badges {
    justify-content: center;
  }

  .testimonial-rating {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}

/* Testimonials Ticker */
.testimonials-ticker {
  background: #f8f7f4;
  padding: 2rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.ticker-track {
  display: flex;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
  width: fit-content;
}

.ticker-item {
  flex-shrink: 0;
  padding: 0 3rem;
  font-size: 1.3rem;
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-weight: 300;
}

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

@keyframes scroll {
  0% {
    transform: translateX(100vw);
  }

  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .ticker-item {
    padding: 0 2rem;
    font-size: 0.9rem;
  }
}

/* Social Section */
.socials-preview {
  padding: 5rem 0;
}

.socials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.social-post-card {
  position: relative;
  border-radius: var(--radius, 12px);
  overflow: hidden;
  display: block;
  aspect-ratio: 4 / 5;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.post-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

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

.post-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  color: white;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.social-post-card:hover .post-overlay {
  opacity: 1;
}

.post-icon {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.post-icon.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.post-icon.tiktok {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.post-icon.facebook {
  background: #1877f2;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.post-text p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .socials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .socials-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
}