
.section-about {
  background: #ffffff;
  padding: 40px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr; 
  gap: 30px;
  align-items: stretch;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.about-media {
  position: relative;
  height: 100%;
}

@media (min-width: 993px) {
  .about-media {
    margin-left: -12px;
  }
}

@media (max-width: 992px) {
  .about-media {
    margin-left: 0;       
  }
}

.about-media-frame {
  position: relative;
  height: 100%;           
  min-height: 420px;       
  border-radius: 20px;
  overflow: visible;
  box-sizing: border-box;
  transition: 0.25s ease;
  border: 0 solid transparent;

  padding: 8px;
  background: linear-gradient(135deg, #ffd84f, #ffda4d);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

@media (max-width: 992px) {
  .about-media-frame {
    min-height: 360px;
  }
}

@media (max-width: 600px) {
  .about-media-frame {
    min-height: 280px;
  }
}

.about-media-frame:hover {
  background: linear-gradient(135deg, #ffd200, #ffcc00);
  box-shadow: 0 0 24px rgba(243, 195, 0, 0.55);
  transform: translateY(-3px);
}

.about-slider {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  overflow: hidden;
}

.about-slide.is-active {
  opacity: 1;
}

.about-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.4s ease;
}

.about-slide.is-active img:hover {
  transform: scale(1.08);
}

.about-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.about-arrow.prev { left: 16px; }
.about-arrow.next { right: 16px; }


.frame-border {
  position: relative;
  border-radius: 16px;
  padding: 6px;
  background: linear-gradient(135deg, #ffd84f, #ffda4d);

  height: 100%;      
  display: flex;
}

.frame-border > * {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
}

.about-card {
  padding: 22px 20px 24px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-soft);
}

.about-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.about-card h2 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text-main);
}

.about-card p {
  margin-bottom: 10px;
}

.frame-border:hover {
  background: linear-gradient(135deg, #ffd200, #ffcc00);
  box-shadow: 0 0 18px rgba(255, 208, 0, 0.5);
  transition: 0.25s ease;
}

.btn-black {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  border: 1px solid #000;
  transition: all 0.25s ease;
}

.btn-black:hover {
  background: #f3c300;
  color: #000;
  border-color: #f3c300;
  box-shadow: 0 0 12px rgba(243,195,0,0.55);
  transform: translateY(-2px);
}
