@import url("base.css");
@import url("fonts.css");

/* === PRACTICE DETAIL BANNER === */
.practice-detail-banner {
  position: relative;
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #024441 100%);
  margin-top: var(--header-height);
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* === PRACTICE DETAIL CONTENT === */
.practice-detail-content {
  padding: 60px 0;
  background-color: var(--bg-color);
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* === TITLE & SUBTITLE === */
.practice-title {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

.practice-subtitle {
  font-size: 16px;
  color: var( --gray-900);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--bg-color);
  font-weight: var(--font-weight-medium);
  font-style: italic;
}

/* === PRACTICE BODY === */
.practice-body {
  line-height: 1.8;
  color: var( --gray-900);
  font-weight: var(--font-weight-regular);
  margin-bottom: 3rem;
}

.practice-body h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-top: 35px;
  margin-bottom: 18px;
  font-weight: var(--font-weight-bold);
}

.practice-body h4 {
  font-size: 20px;
  color: var(--primary-color);
  margin-top: 25px;
  margin-bottom: 14px;
  font-weight: var(--font-weight-semibold);
}

.practice-body p {
  margin-bottom: 20px;
  font-size: 15px;
  text-align: justify;
  line-height: 1.8;
}

.practice-body ul,
.practice-body ol {
  margin-bottom: 25px;
  padding-left: 35px;
  font-weight: var(--font-weight-regular);
}

.practice-body li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.7;
}

.practice-body li::marker {
  color: var(--secondary-color);
  font-weight: bold;
}

.practice-body strong {
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
}

/* === HIGHLIGHT BOX === */
.highlight-box {
  background-color: #e8f4f3;
  border-left: 4px solid var(--primary-color);
  padding: 25px 30px;
  margin: 30px 0;
  border-radius: 0 8px 8px 0;
}

.highlight-box h4 {
  color: var(--primary-color);
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.highlight-box h4::before {
  content: "ℹ";
  font-size: 22px;
  font-weight: bold;
}

.highlight-box p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
  font-weight: var(--font-weight-medium);
}

/* === BOTTOM SLOGAN SECTION === */
.practice-slogan-section {
  position: relative;
  width: 100%;
  background-color: #015854;
  overflow: visible;
  padding: 0;
}

.slogan-overlay {
  display: none;
}

.slogan-content-wrapper {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 180px;
}

.slogan-left {
  width: 50%;
  text-align: left;
  padding-right: 40px;
  z-index: 2;
}

.slogan-title {
  font-size: 44px;
  color: var(--white);
  font-weight: var(--font-weight-bold);
  margin-bottom: 12px;
  line-height: 1.2;
}

.slogan-text {
  font-size: 17px;
  color: var(--secondary-color);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  margin-bottom: 20px;
}

.slogan-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background-color: var(--secondary-color);
  color: #015854;
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary-color);
}

.slogan-btn:hover {
  background-color: transparent;
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(253, 197, 0, 0.3);
}

.slogan-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.slogan-btn:hover i {
  transform: translateX(4px);
}

.slogan-right {
  width: 50%;
  position: relative;
  height: 280px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.slogan-stone-img {
  position: absolute;
  right: 0;
  top: -100px;
  width: auto;
  height: auto;
  max-width: 450px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
  z-index: 10;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .content-wrapper {
    padding: 45px 50px;
  }

  .practice-slogan-section {
    padding: 45px 0;
  }

  .slogan-content-wrapper {
    min-height: 160px;
  }

  .slogan-left {
    padding-right: 30px;
  }

  .slogan-right {
    height: 250px;
  }

  .slogan-stone-img {
    max-width: 400px;
    right: -70px;
    top: -90px;
  }

  .slogan-title {
    font-size: 38px;
  }

  .slogan-text {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .practice-detail-banner {
    height: 280px;
  }

  .practice-detail-content {
    padding: 50px 0;
  }

  .content-wrapper {
    padding: 40px 40px;
  }

  .practice-title {
    font-size: 32px;
  }

  .practice-subtitle {
    font-size: 15px;
  }

  .practice-slogan-section {
    padding: 40px 0;
  }

  .slogan-content-wrapper {
    flex-direction: column;
    text-align: center;
    min-height: auto;
  }

  .slogan-left {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }

  .slogan-right {
    display: none;
  }

  .slogan-title {
    font-size: 32px;
  }

  .slogan-text {
    font-size: 15px;
  }

  .slogan-btn {
    font-size: 15px;
    padding: 12px 26px;
  }
}

@media (max-width: 768px) {
  .practice-detail-banner {
    height: 220px;
  }

  .practice-detail-content {
    padding: 40px 0;
  }

  .content-wrapper {
    padding: 35px 30px;
  }

  .practice-title {
    font-size: 28px;
  }

  .practice-subtitle {
    font-size: 14px;
  }

  .practice-body h3 {
    font-size: 22px;
  }

  .practice-body h4 {
    font-size: 18px;
  }

  .practice-body p,
  .practice-body li {
    font-size: 14px;
  }

  .practice-slogan-section {
    padding: 35px 0;
  }

  .slogan-content-wrapper {
    padding: 0 15px;
  }

  .slogan-title {
    font-size: 28px;
  }

  .slogan-text {
    font-size: 14px;
  }

  .slogan-btn {
    font-size: 14px;
    padding: 11px 22px;
  }
}

@media (max-width: 576px) {
  .practice-detail-banner {
    height: 180px;
  }

  .content-wrapper {
    padding: 25px 20px;
  }

  .practice-title {
    font-size: 24px;
  }

  .practice-subtitle {
    font-size: 13px;
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .practice-body ul,
  .practice-body ol {
    padding-left: 25px;
  }

  .highlight-box {
    padding: 20px 20px;
  }

  .practice-slogan-section {
    padding: 35px 15px;
  }

  .slogan-title {
    font-size: 26px;
  }

  .slogan-text {
    font-size: 14px;
  }

  .slogan-btn {
    font-size: 13px;
    padding: 10px 20px;
    gap: 8px;
  }
}