.yoga-content {
  padding-inline: 0.5rem;
  text-align: center;
  .section-description {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
  }
  .instructor-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 1.5rem 1em;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(91, 66, 51, 0.05);
    text-align: center;
    margin-top: 3rem;
    border: 1px solid rgba(91, 66, 51, 0.1);
    margin-left: auto;
    margin-right: auto;

    .yoga-images {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      place-items: center;
      .yoga-image {
        width: fit-content;
        max-width: 100%;
        border-radius: 8px;
      }
    }
    .instructor-title {
      font-size: 1.75rem;
      color: var(--color-primary);
    }
    .instructor-name {
      font-size: 1.25rem;
      font-weight: 500;
      color: var(--color-secondary);
      text-transform: uppercase;
    }

    .instagram-link {
      color: var(--color-text);
      text-decoration: none;
      display: inline-flex;
      gap: 8px;
      padding: 0.75rem 1.5rem;
      border: 1px solid var(--color-secondary);
      border-radius: 50px;
      transition: all 0.3s ease;
      i {
        font-size: 1.25rem;
      }
      &:hover {
        background-color: var(--color-secondary);
        color: var(--color-bright);
        transform: translateY(-2px);
      }
    }
  }
}

.yoga-background-decorations-container {
  position: relative;
  z-index: 1;

  .info-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;

    .yoga-main-image {
      max-width: 500px;
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 300px;
      flex-shrink: 0;
    }
  }

  .info-section::before,
  .info-section::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 480'%3E%3Cpath d='M360 289.7c43.4 0 86.9-16.6 120-49.7a169.2 169.2 0 0 0-120-49.7 169.2 169.2 0 0 0 49.7-120c-46.9 0-89.3 19-120 49.7 0-43.4-16.6-86.9-49.7-120a169.2 169.2 0 0 0-49.7 120 169.2 169.2 0 0 0-120-49.7c0 46.8 19 89.3 49.7 120-43.4 0-86.9 16.6-120 49.7a169.2 169.2 0 0 0 120 49.7 169.2 169.2 0 0 0-49.7 120c46.8 0 89.3-19 120-49.7 0 43.4 16.6 86.9 49.7 120a169.2 169.2 0 0 0 49.7-120 169.2 169.2 0 0 0 120 49.7c0-46.9-19-89.3-49.7-120Z' fill='%23FAF2EB'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    z-index: -1;
    opacity: 0.7;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
  }

  .info-section::before {
    top: -20px;
    left: -10px;
    animation-delay: 0s;
  }
  .info-section::after {
    bottom: -20px;
    right: -10px;
    animation-delay: 2s;
  }
}

@media (min-width: 992px) {
  .yoga-content {
    padding-inline: 2rem;

    .yoga-background-decorations-container .info-section {
      flex-direction: row;
    }

    .instructor-info {
      padding: 2rem 2.5rem;
      .yoga-images {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }
    }
  }
}
