/* Showcase Section */
.anistonaudioconfrence2-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 10px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 40px;
}

/* Individual Items */
.anistonaudioconfrence2-item {
  padding: 15px;
  margin-bottom: 50px;
}

/* Image Wrapper */
.anistonaudioconfrence2-image-wrapper {
  position: relative;
  background-color: #f9f9f9;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  /* Full width of the container */
  padding-bottom: 100%;
  /* 1:1 Aspect ratio for square images */
  position: relative;
}

/* Image Styles */
.anistonaudioconfrence2-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the image covers the area without distortion */
  transition: transform 0.3s ease-in-out;
  /* Smooth transition for hover effect */
}

/* Zoom-in Hover Effect */
.anistonaudioconfrence2-image-wrapper:hover .anistonaudioconfrence2-image {
  transform: scale(1.1);
  /* Slight zoom */
}

/* Product Details */
.anistonaudioconfrence2-details {
  text-align: left;
  padding-top: 10px;
}

.anistonaudioconfrence2-details h3 {
  font-size: 1.5em;
  /* Default size */
  margin: 0;
}

.anistonaudioconfrence2-details p {
  font-size: 1em;
  color: #555;
}

/* Anchor Link Styles */
.anistonaudioconfrence2-link {
  text-decoration: none;
  color: inherit;
  /* Inherit color for text */
  display: block;
  /* Make the entire item clickable */
}

/* Remove hover effects for the link */
.anistonaudioconfrence2-link:hover {
  text-decoration: none;
}

/* Responsive Font Sizes */
@media (max-width: 1024px) {
  .anistonaudioconfrence2-details h3 {
    font-size: 1.5em;
    /* Adjust heading font size for tablets */
  }

  .anistonaudioconfrence2-details p {
    font-size: 0.9em;
    /* Adjust paragraph font size for tablets */
  }
}

@media (max-width: 599px) {
  .anistonaudioconfrence2-details h3 {
    font-size: 1em;
    /* Adjust heading font size for mobile */
  }

  .anistonaudioconfrence2-details p {
    font-size: 0.6em;
    /* Adjust paragraph font size for mobile */
    line-height: 1.2;
  }
}

/* Desktop Layout */
@media (min-width: 1024px) {
  .anistonaudioconfrence2-showcase {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet Layout */
@media (max-width: 1024px) and (min-width: 600px) {
  .anistonaudioconfrence2-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Layout (2x2 grid) */
@media (max-width: 599px) {
  .anistonaudioconfrence2-showcase {
    grid-template-columns: repeat(2, 1fr);
    /* 2 items per row */
  }
}
