@charset "UTF-8";
/* ================================
   기본 브레이크포인트 (Base Breakpoints)
   ================================ */
.lawyer-page {
  padding-top: 100px;
}
.lawyer-page .container {
  max-width: 1280px;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 1279px) {
  .lawyer-page .container {
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .lawyer-page .container {
    padding: 0 20px;
  }
}
.lawyer-page .section1 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(380px, calc(6.25vw + 18.75rem), 420px);
}
@media screen and (max-width: 1279px) {
  .lawyer-page .section1 {
    height: clamp(340px, calc(7.8431372549vw + 17.4803921569rem), 380px);
  }
}
@media screen and (max-width: 768px) {
  .lawyer-page .section1 {
    height: clamp(300px, calc(8.9285714286vw + 16.9642857143rem), 340px);
  }
}
.lawyer-page .section1 .container {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  max-width: 1480px;
}
.lawyer-page .section1 .section-title {
  font-weight: 700;
  font-size: clamp(50px, calc(1.25vw + 2.125rem), 58px);
  color: #000;
  letter-spacing: -0.02em;
  text-align: left;
}
@media screen and (max-width: 1279px) {
  .lawyer-page .section1 .section-title {
    font-size: clamp(44px, calc(1.1764705882vw + 2.1845588235rem), 50px);
  }
}
@media screen and (max-width: 768px) {
  .lawyer-page .section1 .section-title {
    font-size: clamp(38px, calc(1.3392857143vw + 2.1071428571rem), 44px);
  }
}

.lawyer-archive-page .section2 {
  padding: clamp(40px, 3.125vw, 60px) 0 clamp(120px, 9.375vw, 180px);
}
@media screen and (max-width: 1279px) {
  .lawyer-archive-page .section2 {
    padding: clamp(30px, calc(1.9607843137vw + 0.9325980392rem), 40px) 0 clamp(80px, calc(7.8431372549vw + 1.2303921569rem), 120px);
  }
}
@media screen and (max-width: 768px) {
  .lawyer-archive-page .section2 {
    padding: clamp(20px, calc(2.2321428571vw + 0.8035714286rem), 30px) 0 clamp(60px, calc(4.4642857143vw + 2.8571428571rem), 80px);
  }
}
.lawyer-archive-page .lawyer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(50px, calc(1.5625vw + 1.875rem), 60px);
}
@media screen and (max-width: 1279px) {
  .lawyer-archive-page .lawyer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(40px, calc(1.9607843137vw + 1.5575980392rem), 50px);
  }
}
@media screen and (max-width: 768px) {
  .lawyer-archive-page .lawyer-grid {
    grid-template-columns: 1fr;
    gap: clamp(30px, calc(2.2321428571vw + 1.4285714286rem), 40px);
  }
}
.lawyer-archive-page .lawyer-card {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, calc(0.3125vw + 0.875rem), 20px);
  overflow: hidden;
  background: #fff;
  text-decoration: none;
}
.lawyer-archive-page .lawyer-card:hover .lawyer-card-image img {
  transform: scale(1.05);
}
.lawyer-archive-page .lawyer-card:hover .lawyer-card-image::before {
  opacity: 1;
}
.lawyer-archive-page .lawyer-card:hover .lawyer-card-image::after {
  opacity: 1;
}
.lawyer-archive-page .lawyer-card-image {
  position: relative;
  width: 100%;
  padding-top: 122.225%;
  overflow: hidden;
  background: #f5f5f5;
}
.lawyer-archive-page .lawyer-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.lawyer-archive-page .lawyer-card-image::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lawyer-archive-page .lawyer-card-image::after {
  content: "View More";
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 65px;
  background: url(/wp-content/uploads/2025/10/view-more-button.svg) no-repeat;
  background-position: center bottom;
  font-family: "Noto Serif KR";
  font-weight: 700;
  font-size: clamp(16px, calc(0.3125vw + 0.75rem), 18px);
  color: #fff;
  line-height: normal;
  letter-spacing: -0.02em;
  text-align: center;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lawyer-archive-page .lawyer-card-info {
  display: flex;
  align-items: baseline;
  padding-left: 34px;
  background: url(/wp-content/uploads/2025/10/eden-symbol.svg) no-repeat left center;
  background-size: 24px 24px;
}
.lawyer-archive-page .lawyer-card-name {
  font-weight: 700;
  font-size: clamp(24px, calc(0.625vw + 1rem), 28px);
  color: #000;
  line-height: normal;
}
@media screen and (max-width: 1279px) {
  .lawyer-archive-page .lawyer-card-name {
    font-size: clamp(20px, calc(0.7843137255vw + 0.8730392157rem), 24px);
  }
}
@media screen and (max-width: 768px) {
  .lawyer-archive-page .lawyer-card-name {
    font-size: clamp(18px, calc(0.4464285714vw + 1.0357142857rem), 20px);
  }
}
.lawyer-archive-page .lawyer-card-position {
  margin-left: 6px;
  font-weight: 600;
  font-size: clamp(16px, calc(0.3125vw + 0.75rem), 18px);
  color: #000;
  line-height: normal;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1279px) {
  .lawyer-archive-page .lawyer-card-position {
    font-size: clamp(15px, calc(0.1960784314vw + 0.8432598039rem), 16px);
  }
}
@media screen and (max-width: 768px) {
  .lawyer-archive-page .lawyer-card-position {
    font-size: clamp(14px, calc(0.2232142857vw + 0.8303571429rem), 15px);
  }
}
.lawyer-archive-page .no-lawyers {
  text-align: center;
  font-size: clamp(16px, calc(0.3125vw + 0.75rem), 18px);
  color: #666;
  padding: clamp(60px, calc(3.125vw + 1.25rem), 80px) 0;
}
@media screen and (max-width: 768px) {
  .lawyer-archive-page .no-lawyers {
    font-size: clamp(14px, calc(0.4464285714vw + 0.7857142857rem), 16px);
    padding: clamp(40px, calc(4.4642857143vw + 1.6071428571rem), 60px) 0;
  }
}

.lawyer-single-page {
  padding-top: 0;
}
.lawyer-single-page .section-header {
  height: 720px;
  background: url(/wp-content/uploads/2025/10/single-lawyer-bg.webp) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .lawyer-single-page .section-header {
    height: clamp(520px, calc(17.8571428571vw + 28.9285714286rem), 600px);
    max-height: none;
  }
}
.lawyer-single-page .section-header .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  max-width: 1040px;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 1279px) {
  .lawyer-single-page .section-header .container {
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .lawyer-single-page .section-header .container {
    padding: 0 20px;
  }
}
.lawyer-single-page .section-header .lawyer-header-image > img {
  max-height: clamp(540px, calc(12.5vw + 23.75rem), 620px);
  object-fit: contain;
}
@media screen and (max-width: 1279px) {
  .lawyer-single-page .section-header .lawyer-header-image > img {
    max-height: clamp(420px, calc(23.5294117647vw + 14.9411764706rem), 540px);
  }
}
@media screen and (max-width: 768px) {
  .lawyer-single-page .section-header .lawyer-header-image > img {
    max-height: clamp(300px, calc(26.7857142857vw + 13.3928571429rem), 420px);
  }
}
.lawyer-single-page .lawyer-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .lawyer-single-page .lawyer-header {
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }
}
.lawyer-single-page .lawyer-header-info {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: clamp(70px, calc(1.5625vw + 3.125rem), 80px);
}
@media screen and (max-width: 1279px) {
  .lawyer-single-page .lawyer-header-info {
    padding-bottom: clamp(60px, calc(1.9607843137vw + 2.8075980392rem), 70px);
  }
}
@media screen and (max-width: 768px) {
  .lawyer-single-page .lawyer-header-info {
    padding-bottom: clamp(30px, calc(2.2321428571vw + 1.4285714286rem), 40px);
  }
}
.lawyer-single-page .lawyer-position {
  font-weight: 600;
  font-size: clamp(22px, calc(0.3125vw + 1.125rem), 24px);
  color: #fff;
  line-height: normal;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1279px) {
  .lawyer-single-page .lawyer-position {
    font-size: clamp(20px, calc(0.3921568627vw + 1.0615196078rem), 22px);
  }
}
@media screen and (max-width: 768px) {
  .lawyer-single-page .lawyer-position {
    font-size: clamp(18px, calc(0.4464285714vw + 1.0357142857rem), 20px);
  }
}
.lawyer-single-page .lawyer-name {
  font-weight: 700;
  font-size: clamp(40px, calc(1.25vw + 1.5rem), 48px);
  color: #fff;
  line-height: normal;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1279px) {
  .lawyer-single-page .lawyer-name {
    font-size: clamp(36px, calc(0.7843137255vw + 1.8730392157rem), 40px);
  }
}
@media screen and (max-width: 768px) {
  .lawyer-single-page .lawyer-name {
    font-size: clamp(32px, calc(0.8928571429vw + 1.8214285714rem), 36px);
  }
}
.lawyer-single-page .section-details {
  display: flex;
  padding: clamp(100px, calc(3.125vw + 3.75rem), 120px) 0 clamp(180px, calc(3.125vw + 8.75rem), 200px);
  justify-content: center;
}
@media screen and (max-width: 1279px) {
  .lawyer-single-page .section-details {
    padding: clamp(80px, calc(3.9215686275vw + 3.1151960784rem), 100px) 0 clamp(160px, calc(3.9215686275vw + 8.1151960784rem), 180px);
  }
}
@media screen and (max-width: 768px) {
  .lawyer-single-page .section-details {
    padding: clamp(60px, calc(4.4642857143vw + 2.8571428571rem), 80px) 0 clamp(140px, calc(4.4642857143vw + 7.8571428571rem), 160px);
  }
}
.lawyer-single-page .section-details .container {
  width: 100%;
  max-width: 1040px;
  padding: 0 40px;
}
@media screen and (max-width: 1279px) {
  .lawyer-single-page .section-details .container {
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .lawyer-single-page .section-details .container {
    padding: 0 20px;
  }
}
.lawyer-single-page .lawyer-detail-section {
  margin-bottom: clamp(60px, calc(1.5625vw + 2.5rem), 70px);
}
@media screen and (max-width: 1279px) {
  .lawyer-single-page .lawyer-detail-section {
    margin-bottom: clamp(50px, calc(1.9607843137vw + 2.1825980392rem), 60px);
  }
}
@media screen and (max-width: 768px) {
  .lawyer-single-page .lawyer-detail-section {
    margin-bottom: clamp(40px, calc(2.2321428571vw + 2.0535714286rem), 50px);
  }
}
.lawyer-single-page .lawyer-detail-section:last-of-type {
  margin-bottom: 0;
}
.lawyer-single-page .detail-section-title {
  display: inline-block;
  padding-bottom: clamp(14px, calc(0.3125vw + 0.625rem), 16px);
  border-bottom: 2px solid #000;
  font-weight: 700;
  font-size: clamp(32px, calc(0.625vw + 1.5rem), 36px);
  color: #111;
  line-height: normal;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1279px) {
  .lawyer-single-page .detail-section-title {
    font-size: clamp(28px, calc(0.7843137255vw + 1.3730392157rem), 32px);
    padding-bottom: clamp(12px, calc(0.3921568627vw + 0.5615196078rem), 14px);
  }
}
@media screen and (max-width: 768px) {
  .lawyer-single-page .detail-section-title {
    font-size: clamp(24px, calc(0.8928571429vw + 1.3214285714rem), 28px);
    padding-bottom: clamp(10px, calc(0.4464285714vw + 0.5357142857rem), 12px);
  }
}
.lawyer-single-page .detail-list {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, calc(0.3125vw + 0.625rem), 16px);
  padding-top: clamp(48px, calc(0.9375vw + 2.25rem), 54px);
  border-top: 1px solid #CDCDCD;
  list-style: none;
}
@media screen and (max-width: 1279px) {
  .lawyer-single-page .detail-list {
    gap: clamp(12px, calc(0.3921568627vw + 0.5615196078rem), 14px);
    padding-top: clamp(40px, calc(1.568627451vw + 1.7460784314rem), 48px);
  }
}
@media screen and (max-width: 768px) {
  .lawyer-single-page .detail-list {
    gap: clamp(10px, calc(0.4464285714vw + 0.5357142857rem), 12px);
    padding-top: clamp(30px, calc(2.2321428571vw + 1.4285714286rem), 40px);
  }
}
.lawyer-single-page .detail-list li {
  position: relative;
  padding-left: clamp(13px, calc(0.3125vw + 0.5625rem), 15px);
  font-weight: 500;
  font-size: clamp(18px, calc(0.3125vw + 0.875rem), 20px);
  color: #111;
  line-height: normal;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1279px) {
  .lawyer-single-page .detail-list li {
    padding-left: clamp(12px, calc(0.1960784314vw + 0.6557598039rem), 13px);
    font-size: clamp(16px, calc(0.3921568627vw + 0.8115196078rem), 18px);
  }
}
@media screen and (max-width: 768px) {
  .lawyer-single-page .detail-list li {
    padding-left: clamp(10px, calc(0.4464285714vw + 0.5357142857rem), 12px);
    font-size: clamp(15px, calc(0.2232142857vw + 0.8928571429rem), 16px);
  }
}
.lawyer-single-page .detail-list li:last-child {
  margin-bottom: 0;
}
.lawyer-single-page .detail-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #333;
  font-weight: bold;
}
.lawyer-single-page .lawyer-back-button {
  margin-top: clamp(90px, calc(1.5625vw + 4.375rem), 100px);
  text-align: center;
}
@media screen and (max-width: 1279px) {
  .lawyer-single-page .lawyer-back-button {
    margin-top: clamp(80px, calc(1.9607843137vw + 4.0575980392rem), 90px);
  }
}
@media screen and (max-width: 768px) {
  .lawyer-single-page .lawyer-back-button {
    margin-top: clamp(70px, calc(2.2321428571vw + 3.9285714286rem), 80px);
  }
}
.lawyer-single-page .back-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: clamp(144px, calc(1.875vw + 7.5rem), 156px);
  height: clamp(54px, calc(0.46875vw + 3rem), 57px);
  margin: 0 auto;
  margin-top: 30px;
  border: 1px solid #333;
  border-radius: 6px;
  background-color: #fff;
  font-weight: 500;
  font-size: clamp(16px, calc(0.3125vw + 0.75rem), 18px);
  color: #111;
  line-height: normal;
  letter-spacing: -0.02em;
  transition: all ease 0.3s;
}
@media screen and (max-width: 1279px) {
  .lawyer-single-page .back-button {
    width: clamp(136px, calc(1.568627451vw + 7.7460784314rem), 144px);
    height: clamp(50px, calc(0.7843137255vw + 2.7480392157rem), 54px);
    font-size: clamp(15px, calc(0.1960784314vw + 0.8432598039rem), 16px);
  }
}
@media screen and (max-width: 768px) {
  .lawyer-single-page .back-button {
    width: clamp(128px, calc(1.7857142857vw + 7.6428571429rem), 136px);
    height: clamp(45px, calc(1.1160714286vw + 2.5892857143rem), 50px);
    font-size: clamp(14px, calc(0.2232142857vw + 0.8303571429rem), 15px);
  }
}
.lawyer-single-page .back-button:hover {
  border-color: #15523C;
  background-color: #15523C;
}
.lawyer-single-page .back-button:hover * {
  filter: brightness(0) invert(1);
}