.carousel-container {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3 / 4;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px 24px 24px 0;
}

.carousel-large {
  max-width: 600px;
}

.carousel-fade {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-fade__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s ease-in-out;
  border-radius: 24px 24px 24px 0;
}

.carousel-fade__slide.active {
  opacity: 1;
  z-index: 2;
}

.carousel-fade__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 24px 24px 24px 0;
}

.about-actions {
  margin: 1.25rem 0 1.75rem;
}

.about-actions .cta-button {
  margin-top: 0;
}

.about-actions .cta-button:hover {
  transform: translateY(-2px);
}


.page-title {
  direction: rtl;
  /*text-align: right;*/ 
  font-family: system-ui, -apple-system, sans-serif;
  margin-bottom: 25px;
}

body {
  margin: 0; /* Clears default browser gaps */
  padding: 0 15px; /* Adds a strict 15px safety zone on the left and right edges */
  box-sizing: border-box; /* Ensures the padding does not break horizontal layouts */
  direction: rtl;
}

/* Ensures all elements inherit the secure box-sizing constraint */
*, *:before, *:after {
  box-sizing: inherit;
}


