#project-cta .content-sidebar {
  position: sticky;
  top: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
#project-cta .sidebar-nav {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
#project-cta .sidebar-nav h3 {
  position: relative;
  margin: 0;
  padding: 22px 24px 18px;
  color: #141b44;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  background: #0d3192;
  border-bottom: 1px solid #e5e7eb;
}
#project-cta .sidebar-nav h3::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 24px;
  width: 42px;
  height: 3px;
  background: #da2128;
  border-radius: 100rem;
}
#project-cta .sidebar-nav ul {
  margin: 0;
  padding: 10px 0;
  list-style: none;
  counter-reset: project-nav;
}
#project-cta .sidebar-nav li {
  position: relative;
  margin: 0;
  counter-increment: project-nav;
}
#project-cta .sidebar-nav li:not(:last-child) {
  border-bottom: 1px solid #e5e7eb;
}
#project-cta .sidebar-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 13px 20px 13px 58px;
  color: #515152;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  background: #fff;
  transition: color 0.3s ease, background 0.3s ease;
}
#project-cta .sidebar-nav a::before {
  content: counter(project-nav, decimal-leading-zero);
  position: absolute;
  left: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #374ea2;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  background: rgba(55, 78, 162, 0.08);
  border-radius: 6px;
  transition: color 0.3s ease, background 0.3s ease;
}
#project-cta .sidebar-nav a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: transparent;
  transition: background 0.3s ease;
}
#project-cta .sidebar-nav a:hover {
  color: #374ea2;
  background: rgba(55, 78, 162, 0.04);
}
#project-cta .sidebar-nav a:hover::before {
  color: #fff;
  background: #374ea2;
}
#project-cta .sidebar-nav a:hover::after {
  background: #da2128;
}
#project-cta .sidebar-contact {
  position: relative;
  padding: 28px 26px;
  overflow: hidden;
  background: #141b44;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
#project-cta .sidebar-contact::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100rem;
  pointer-events: none;
}
#project-cta .sidebar-contact h3 {
  position: relative;
  margin: 0 0 16px;
  padding-bottom: 14px;
  color: #fff;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}
#project-cta .sidebar-contact h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #da2128;
  border-radius: 100rem;
}
#project-cta .sidebar-contact p {
  position: relative;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
}
#project-cta .sidebar-contact .sidebar-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  background: #da2128;
  border: 1px solid #da2128;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
#project-cta .sidebar-contact .sidebar-btn:hover {
  background: #fa0103;
  border-color: #fa0103;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
#project-cta {
  background: #141b44;
}
#project-cta .cta-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: stretch;
  gap: 44px;
}
@media screen and (max-width: 1024px) {
  #project-cta .cta-wrap {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  #project-cta .cta-wrap {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
}
@media screen and (max-width: 640px) {
  #project-cta .cta-wrap {
    gap: 20px;
  }
}
#project-cta .cta-content {
  padding: 44px 46px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1024px) {
  #project-cta .cta-content {
    padding: 36px 34px;
  }
}
@media screen and (max-width: 768px) {
  #project-cta .cta-content {
    padding: 32px 28px;
  }
}
@media screen and (max-width: 640px) {
  #project-cta .cta-content {
    padding: 26px 20px;
    border-radius: 12px;
  }
}
@media screen and (max-width: 480px) {
  #project-cta .cta-content {
    padding: 22px 16px;
  }
}
#project-cta .cta-content .section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: #f5e7a5;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  #project-cta .cta-content .section-label {
    margin-bottom: 12px;
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  #project-cta .cta-content .section-label {
    gap: 8px;
    font-size: 12px;
  }
}
#project-cta .cta-content .section-label::before {
  content: "";
  width: 32px;
  height: 3px;
  flex-shrink: 0;
  background: #da2128;
  border-radius: 100rem;
}
@media screen and (max-width: 640px) {
  #project-cta .cta-content .section-label::before {
    width: 26px;
  }
}
#project-cta .cta-content h2 {
  max-width: 760px;
  margin: 0 0 20px;
  color: #fff;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1024px) {
  #project-cta .cta-content h2 {
    font-size: 31px;
  }
}
@media screen and (max-width: 768px) {
  #project-cta .cta-content h2 {
    margin-bottom: 17px;
    font-size: 28px;
    line-height: 1.35;
  }
}
@media screen and (max-width: 640px) {
  #project-cta .cta-content h2 {
    margin-bottom: 14px;
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  #project-cta .cta-content h2 {
    font-size: 21px;
  }
}
#project-cta .cta-content > p {
  max-width: 820px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.74);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #project-cta .cta-content > p {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.75;
  }
}
@media screen and (max-width: 640px) {
  #project-cta .cta-content > p {
    margin-bottom: 19px;
    font-size: 14px;
    line-height: 1.7;
  }
}
#project-cta .cta-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  #project-cta .cta-list {
    gap: 10px;
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 768px) {
  #project-cta .cta-list {
    gap: 12px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 640px) {
  #project-cta .cta-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
    margin-bottom: 22px;
  }
}
#project-cta .cta-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 15px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 1024px) {
  #project-cta .cta-list li {
    padding: 12px;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  #project-cta .cta-list li {
    padding: 13px;
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  #project-cta .cta-list li {
    padding: 12px 13px;
  }
}
#project-cta .cta-list li .fa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: #f5e7a5;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  transition: color 0.3s ease, background 0.3s ease;
}
@media screen and (max-width: 1024px) {
  #project-cta .cta-list li .fa {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
    font-size: 11px;
  }
}
#project-cta .cta-list li span {
  padding-top: 3px;
}
#project-cta .cta-list li:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}
#project-cta .cta-list li:hover .fa {
  color: #fff;
  background: #374ea2;
}
#project-cta .cta-action {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media screen and (max-width: 640px) {
  #project-cta .cta-action {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
}
#project-cta .cta-action .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 22px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  #project-cta .cta-action .btn {
    min-height: 46px;
    padding: 12px 20px;
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  #project-cta .cta-action .btn {
    width: 100%;
    min-height: 44px;
    padding: 11px 18px;
  }
}
#project-cta .cta-action .btn:hover {
  transform: translateY(-2px);
}
#project-cta .cta-action .cta-btn {
  color: #fff;
  background: #da2128;
  border: 1px solid #da2128;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
#project-cta .cta-action .cta-btn:hover {
  background: #fa0103;
  border-color: #fa0103;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
#project-cta .cta-action .phone-btn {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
#project-cta .cta-action .phone-btn .fa {
  font-size: 15px;
}
#project-cta .cta-action .phone-btn:hover {
  color: #141b44;
  background: #fff;
  border-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
#project-cta .cta-info {
  position: relative;
  padding: 38px 34px;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1024px) {
  #project-cta .cta-info {
    padding: 32px 28px;
  }
}
@media screen and (max-width: 768px) {
  #project-cta .cta-info {
    padding: 28px 26px;
  }
}
@media screen and (max-width: 640px) {
  #project-cta .cta-info {
    padding: 24px 20px;
    border-radius: 12px;
  }
}
@media screen and (max-width: 480px) {
  #project-cta .cta-info {
    padding: 22px 16px;
  }
}
#project-cta .cta-info::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: #da2128;
}
#project-cta .cta-info h3 {
  position: relative;
  margin: 0 0 18px;
  padding: 0 0 14px;
  color: #141b44;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #project-cta .cta-info h3 {
    margin-bottom: 16px;
    padding-bottom: 12px;
    font-size: 21px;
  }
}
@media screen and (max-width: 640px) {
  #project-cta .cta-info h3 {
    margin-bottom: 14px;
    font-size: 19px;
  }
}
#project-cta .cta-info h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 3px;
  background: #374ea2;
  border-radius: 100rem;
}
#project-cta .cta-info > p {
  margin: 0 0 22px;
  color: #515152;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  #project-cta .cta-info > p {
    margin-bottom: 19px;
    font-size: 13px;
    line-height: 1.7;
  }
}
#project-cta .info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: info-counter;
}
@media screen and (max-width: 768px) {
  #project-cta .info-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
  }
}
@media screen and (max-width: 640px) {
  #project-cta .info-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
}
#project-cta .info-list li {
  position: relative;
  counter-increment: info-counter;
  padding: 15px 0 15px 44px;
  color: #515152;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  border-bottom: 1px solid #e5e7eb;
}
@media screen and (max-width: 768px) {
  #project-cta .info-list li {
    padding: 13px 0 13px 40px;
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  #project-cta .info-list li {
    padding: 12px 0 12px 38px;
  }
}
#project-cta .info-list li::before {
  content: counter(info-counter, decimal-leading-zero);
  position: absolute;
  top: 14px;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #374ea2;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  background: rgba(55, 78, 162, 0.08);
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  #project-cta .info-list li::before {
    top: 12px;
    width: 28px;
    height: 28px;
    font-size: 10px;
  }
}
#project-cta .info-list li:first-child {
  padding-top: 0;
}
#project-cta .info-list li:first-child::before {
  top: 0;
}
@media screen and (max-width: 768px) {
  #project-cta .info-list li:nth-child(2) {
    padding-top: 0;
  }
  #project-cta .info-list li:nth-child(2)::before {
    top: 0;
  }
}
@media screen and (max-width: 640px) {
  #project-cta .info-list li:nth-child(2) {
    padding-top: 12px;
  }
  #project-cta .info-list li:nth-child(2)::before {
    top: 12px;
  }
}
#project-cta .info-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

#project-specs {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #project-specs .section-head {
    max-width: 100%;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 640px) {
  #project-specs .section-head {
    margin-bottom: 26px;
  }
}
@media screen and (max-width: 768px) {
  #project-specs .section-label {
    margin-bottom: 13px;
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  #project-specs .section-label {
    gap: 8px;
    margin-bottom: 11px;
    font-size: 12px;
  }
}
@media screen and (max-width: 640px) {
  #project-specs .section-label::before {
    width: 26px;
  }
}
@media screen and (max-width: 768px) {
  #project-specs .section-title {
    font-size: 30px;
    line-height: 1.35;
  }
}
@media screen and (max-width: 640px) {
  #project-specs .section-title {
    font-size: 25px;
  }
}
@media screen and (max-width: 480px) {
  #project-specs .section-title {
    font-size: 22px;
  }
}
#project-specs .specs-wrap {
  gap: 42px;
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
}
@media screen and (max-width: 1024px) {
  #project-specs .specs-wrap {
    gap: 30px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  }
}
@media screen and (max-width: 768px) {
  #project-specs .specs-wrap {
    gap: 26px;
    grid-template-columns: minmax(0, 1fr);
  }
}
@media screen and (max-width: 640px) {
  #project-specs .specs-wrap {
    gap: 22px;
  }
}
#project-specs .specs-content {
  min-width: 0;
}
#project-specs .specs-content p {
  max-width: 900px;
  margin: 0 0 28px;
  color: #515152;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
}
@media screen and (max-width: 768px) {
  #project-specs .specs-content p {
    max-width: 100%;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.75;
  }
}
@media screen and (max-width: 640px) {
  #project-specs .specs-content p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.7;
  }
}
#project-specs .table-wrap {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 640px) {
  #project-specs .table-wrap {
    border-radius: 12px;
  }
}
#project-specs .specs-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
@media screen and (max-width: 640px) {
  #project-specs .specs-table {
    table-layout: fixed;
  }
}
#project-specs .specs-table caption {
  padding: 20px 24px;
  color: #fff;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  background: #374ea2;
}
@media screen and (max-width: 768px) {
  #project-specs .specs-table caption {
    padding: 17px 20px;
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  #project-specs .specs-table caption {
    padding: 15px 16px;
    font-size: 14px;
    line-height: 1.45;
  }
}
#project-specs .specs-table tbody tr {
  transition: background 0.2s ease;
}
#project-specs .specs-table tbody tr:nth-child(even) {
  background: rgba(55, 78, 162, 0.025);
}
#project-specs .specs-table tbody tr:hover {
  background: rgba(55, 78, 162, 0.06);
}
#project-specs .specs-table tbody tr:hover th {
  color: #374ea2;
}
#project-specs .specs-table tbody tr:last-child th,
#project-specs .specs-table tbody tr:last-child td {
  border-bottom: 0;
}
#project-specs .specs-table th,
#project-specs .specs-table td {
  padding: 17px 22px;
  vertical-align: middle;
  border-bottom: 1px solid #e5e7eb;
}
@media screen and (max-width: 768px) {
  #project-specs .specs-table th,
  #project-specs .specs-table td {
    padding: 15px 18px;
  }
}
@media screen and (max-width: 640px) {
  #project-specs .specs-table th,
  #project-specs .specs-table td {
    padding: 13px 14px;
    overflow-wrap: anywhere;
  }
}
@media screen and (max-width: 480px) {
  #project-specs .specs-table th,
  #project-specs .specs-table td {
    padding: 12px;
  }
}
#project-specs .specs-table th {
  width: 36%;
  color: #515152;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  text-align: left;
  background: rgba(55, 78, 162, 0.025);
  border-right: 1px solid #e5e7eb;
  transition: color 0.2s ease;
}
@media screen and (max-width: 768px) {
  #project-specs .specs-table th {
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  #project-specs .specs-table th {
    width: 42%;
    font-size: 12px;
    line-height: 1.5;
  }
}
#project-specs .specs-table td {
  color: #333;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}
@media screen and (max-width: 768px) {
  #project-specs .specs-table td {
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  #project-specs .specs-table td {
    font-size: 12px;
    line-height: 1.5;
  }
}
#project-specs .specs-table td a {
  color: #374ea2;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(55, 78, 162, 0.3);
  transition: color 0.2s ease, border-color 0.2s ease;
}
#project-specs .specs-table td a:hover {
  color: #da2128;
  border-color: #da2128;
}
#project-specs .specs-table td time {
  color: inherit;
}
#project-specs .specs-note {
  position: sticky;
  top: 30px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1024px) {
  #project-specs .specs-note {
    padding: 26px;
  }
}
@media screen and (max-width: 768px) {
  #project-specs .specs-note {
    position: static;
    padding: 26px 24px;
  }
}
@media screen and (max-width: 640px) {
  #project-specs .specs-note {
    padding: 23px 20px;
    border-radius: 12px;
  }
}
@media screen and (max-width: 480px) {
  #project-specs .specs-note {
    padding: 21px 16px;
  }
}
#project-specs .specs-note::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: #374ea2;
}
#project-specs .specs-note h3 {
  position: relative;
  margin: 0 0 18px;
  padding: 0 0 14px;
  color: #141b44;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #project-specs .specs-note h3 {
    margin-bottom: 16px;
    padding-bottom: 12px;
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  #project-specs .specs-note h3 {
    margin-bottom: 14px;
    font-size: 18px;
  }
}
#project-specs .specs-note h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #da2128;
  border-radius: 100rem;
}
#project-specs .specs-note > p {
  margin: 0 0 20px;
  color: #515152;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  #project-specs .specs-note > p {
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.7;
  }
}
#project-specs .note-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  #project-specs .note-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
  }
}
@media screen and (max-width: 640px) {
  #project-specs .note-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
}
#project-specs .note-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid #e5e7eb;
}
@media screen and (max-width: 768px) {
  #project-specs .note-list li {
    gap: 10px;
    padding: 13px 0;
  }
  #project-specs .note-list li:nth-child(2) {
    padding-top: 0;
  }
  #project-specs .note-list li:nth-last-child(2) {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  #project-specs .note-list li {
    padding: 12px 0;
  }
  #project-specs .note-list li:nth-child(2) {
    padding-top: 12px;
  }
  #project-specs .note-list li:nth-last-child(2) {
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
  }
}
#project-specs .note-list li:first-child {
  padding-top: 0;
}
#project-specs .note-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
#project-specs .note-list li .fa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  margin-top: 1px;
  color: #374ea2;
  font-size: 12px;
  background: rgba(55, 78, 162, 0.08);
  border: 1px solid rgba(55, 78, 162, 0.12);
  border-radius: 6px;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  #project-specs .note-list li .fa {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    font-size: 11px;
  }
}
#project-specs .note-list li span {
  color: #515152;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  #project-specs .note-list li span {
    font-size: 12px;
    line-height: 1.65;
  }
}
@media screen and (max-width: 640px) {
  #project-specs .note-list li span {
    font-size: 13px;
  }
}
#project-specs .note-list li:hover .fa {
  color: #fff;
  background: #374ea2;
  border-color: #374ea2;
}

#project-header {
  border-bottom: 1px solid #e5e7eb;
  background: linear-gradient(180deg, #fff 0%, rgba(173, 184, 217, 0.08) 100%);
}
#project-header .project-head {
  gap: 40px;
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
}
@media screen and (max-width: 1024px) {
  #project-header .project-head {
    gap: 30px;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  }
}
@media screen and (max-width: 768px) {
  #project-header .project-head {
    gap: 30px;
    grid-template-columns: minmax(0, 1fr);
  }
}
@media screen and (max-width: 640px) {
  #project-header .project-head {
    gap: 24px;
  }
}
#project-header .project-content {
  min-width: 0;
}
#project-header .project-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #da2128;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}
#project-header .project-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
#project-header .project-label {
  gap: 10px;
}
@media screen and (max-width: 768px) {
  #project-header .project-label {
    margin-bottom: 13px;
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  #project-header .project-label {
    gap: 8px;
    margin-bottom: 11px;
    font-size: 12px;
  }
}
#project-header .project-label::before {
  content: "";
  width: 32px;
  height: 3px;
  flex-shrink: 0;
  background: #da2128;
  border-radius: 100rem;
}
@media screen and (max-width: 640px) {
  #project-header .project-label::before {
    width: 26px;
  }
}
#project-header h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: #141b44;
  font-family: "Be Vietnam Pro", sans-serif;
}
@media screen and (max-width: 1024px) {
  #project-header h1 {
    font-size: 28px;
    line-height: 1.45;
  }
}
@media screen and (max-width: 768px) {
  #project-header h1 {
    font-size: 27px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 640px) {
  #project-header h1 {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  #project-header h1 {
    font-size: 21px;
  }
}
#project-header .project-sapo {
  max-width: 720px;
  margin: 22px 0 0;
  color: #515152;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (max-width: 1024px) {
  #project-header .project-sapo {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.7;
  }
}
@media screen and (max-width: 768px) {
  #project-header .project-sapo {
    max-width: 100%;
    font-size: 15px;
  }
}
@media screen and (max-width: 640px) {
  #project-header .project-sapo {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.65;
  }
}
#project-header .project-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 32px 0 0;
}
@media screen and (max-width: 1024px) {
  #project-header .project-meta {
    gap: 12px;
    margin-top: 26px;
  }
}
@media screen and (max-width: 768px) {
  #project-header .project-meta {
    gap: 12px 16px;
    margin-top: 24px;
  }
}
@media screen and (max-width: 640px) {
  #project-header .project-meta {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    margin-top: 21px;
  }
}
#project-header .meta-item {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 1024px) {
  #project-header .meta-item {
    padding: 14px 15px;
  }
}
@media screen and (max-width: 768px) {
  #project-header .meta-item {
    padding: 15px 17px;
  }
}
@media screen and (max-width: 640px) {
  #project-header .meta-item {
    padding: 13px 15px;
  }
}
#project-header .meta-item:hover {
  border-color: #adb8d9;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
#project-header .meta-item dt {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
  color: #787878;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  #project-header .meta-item dt {
    gap: 7px;
    font-size: 12px;
  }
}
@media screen and (max-width: 640px) {
  #project-header .meta-item dt {
    margin-bottom: 5px;
  }
}
#project-header .meta-item dt .fa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #374ea2;
  font-size: 14px;
  background: rgba(55, 78, 162, 0.08);
  border-radius: 6px;
  transition: color 0.3s ease, background 0.3s ease;
}
@media screen and (max-width: 1024px) {
  #project-header .meta-item dt .fa {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }
}
#project-header .meta-item dd {
  margin: 0;
  padding-left: 36px;
  color: #333;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  #project-header .meta-item dd {
    padding-left: 33px;
    font-size: 14px;
  }
}
@media screen and (max-width: 640px) {
  #project-header .meta-item dd {
    padding-left: 33px;
    font-size: 13px;
  }
}
#project-header .meta-item dd a {
  color: #374ea2;
  text-decoration: none;
  transition: color 0.2s ease;
}
#project-header .meta-item dd a:hover {
  color: #da2128;
}
#project-header .meta-item dd time {
  color: inherit;
}
#project-header .meta-item:hover dt .fa {
  color: #fff;
  background: #374ea2;
}
#project-header .project-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 768px) {
  #project-header .project-image {
    width: 100%;
    border-radius: 12px;
  }
}
@media screen and (max-width: 640px) {
  #project-header .project-image {
    border-radius: 8px;
  }
}
#project-header .project-image img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
@media screen and (max-width: 1024px) {
  #project-header .project-image img {
    height: 380px;
  }
}
@media screen and (max-width: 768px) {
  #project-header .project-image img {
    height: auto;
    aspect-ratio: 16/9;
  }
}
#project-header .project-image figcaption {
  padding: 13px 18px 14px;
  color: #787878;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  background: #fff;
  border-top: 1px solid #e5e7eb;
}
@media screen and (max-width: 768px) {
  #project-header .project-image figcaption {
    padding: 12px 16px 13px;
    font-size: 12px;
  }
}
@media screen and (max-width: 640px) {
  #project-header .project-image figcaption {
    padding: 11px 14px 12px;
    line-height: 1.5;
  }
}
#project-header .project-image:hover img {
  transform: scale(1.025);
}

#project-process {
  background: rgba(55, 78, 162, 0.035);
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
#project-process .section-head {
  max-width: 820px;
  margin: 0 0 24px;
}
@media screen and (max-width: 768px) {
  #project-process .section-head {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  #project-process .section-head {
    margin-bottom: 17px;
  }
}
#project-process .section-head .section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: #da2128;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  #project-process .section-head .section-label {
    margin-bottom: 11px;
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  #project-process .section-head .section-label {
    gap: 8px;
    margin-bottom: 10px;
    font-size: 12px;
  }
}
#project-process .section-head .section-label::before {
  content: "";
  width: 32px;
  height: 3px;
  flex-shrink: 0;
  background: #da2128;
  border-radius: 100rem;
}
@media screen and (max-width: 640px) {
  #project-process .section-head .section-label::before {
    width: 26px;
  }
}
#project-process .section-head h2 {
  margin: 0;
  color: #141b44;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  #project-process .section-head h2 {
    font-size: 30px;
    line-height: 1.35;
  }
}
@media screen and (max-width: 640px) {
  #project-process .section-head h2 {
    font-size: 25px;
  }
}
@media screen and (max-width: 480px) {
  #project-process .section-head h2 {
    font-size: 22px;
  }
}
#project-process .process-intro {
  max-width: 900px;
  margin: 0 0 46px;
}
@media screen and (max-width: 768px) {
  #project-process .process-intro {
    max-width: 100%;
    margin-bottom: 34px;
  }
}
@media screen and (max-width: 640px) {
  #project-process .process-intro {
    margin-bottom: 28px;
  }
}
#project-process .process-intro p {
  margin: 0;
  color: #515152;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
}
@media screen and (max-width: 768px) {
  #project-process .process-intro p {
    font-size: 15px;
    line-height: 1.75;
  }
}
@media screen and (max-width: 640px) {
  #project-process .process-intro p {
    font-size: 14px;
    line-height: 1.7;
  }
}
#project-process .process-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  #project-process .process-list {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  #project-process .process-list {
    gap: 18px;
  }
}
@media screen and (max-width: 640px) {
  #project-process .process-list {
    gap: 16px;
  }
}
#project-process .process-list::before {
  content: "";
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 35px;
  width: 2px;
  background: #adb8d9;
}
@media screen and (max-width: 1024px) {
  #project-process .process-list::before {
    left: 50px;
  }
}
@media screen and (max-width: 768px) {
  #project-process .process-list::before {
    top: 34px;
    bottom: 34px;
    left: 46px;
  }
}
@media screen and (max-width: 640px) {
  #project-process .process-list::before {
    top: 30px;
    bottom: 30px;
    left: 39px;
  }
}
#project-process .process-item {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 390px;
  align-items: stretch;
  gap: 26px;
  padding: 28px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 1024px) {
  #project-process .process-item {
    grid-template-columns: 64px minmax(0, 1fr) 320px;
    gap: 20px;
    padding: 24px;
  }
}
@media screen and (max-width: 768px) {
  #project-process .process-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    padding: 22px;
  }
}
@media screen and (max-width: 640px) {
  #project-process .process-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px 12px;
    padding: 18px;
    border-radius: 12px;
  }
}
@media screen and (max-width: 480px) {
  #project-process .process-item {
    padding: 16px;
  }
}
#project-process .process-item:hover {
  border-color: #adb8d9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}
#project-process .process-item:hover .process-number {
  color: #fff;
  background: #da2128;
  border-color: #da2128;
}
#project-process .process-item:hover .process-content h3 {
  color: #374ea2;
}
#project-process .process-item:hover .process-image img {
  transform: scale(1.025);
}
#project-process .process-number {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: #374ea2;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  background: #fff;
  border: 2px solid #374ea2;
  border-radius: 100rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 1024px) {
  #project-process .process-number {
    width: 52px;
    height: 52px;
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  #project-process .process-number {
    width: 48px;
    height: 48px;
    font-size: 14px;
  }
}
@media screen and (max-width: 640px) {
  #project-process .process-number {
    width: 42px;
    height: 42px;
    font-size: 12px;
  }
}
#project-process .process-content {
  min-width: 0;
  padding: 4px 0;
}
@media screen and (max-width: 768px) {
  #project-process .process-content {
    padding: 2px 0 0;
  }
}
@media screen and (max-width: 640px) {
  #project-process .process-content {
    padding-top: 0;
  }
}
#project-process .process-content h3 {
  position: relative;
  margin: 0 0 16px;
  padding: 0 0 14px;
  color: #141b44;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.2s ease;
}
@media screen and (max-width: 768px) {
  #project-process .process-content h3 {
    margin-bottom: 14px;
    padding-bottom: 12px;
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  #project-process .process-content h3 {
    margin-bottom: 12px;
    padding-bottom: 10px;
    font-size: 18px;
  }
}
#project-process .process-content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38px;
  height: 3px;
  background: #da2128;
  border-radius: 100rem;
}
#project-process .process-content p {
  margin: 0 0 13px;
  color: #515152;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  #project-process .process-content p {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.7;
  }
}
@media screen and (max-width: 640px) {
  #project-process .process-content p {
    font-size: 13px;
    line-height: 1.65;
  }
}
#project-process .process-content p:last-child {
  margin-bottom: 0;
}
#project-process .process-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: rgba(55, 78, 162, 0.05);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}
@media screen and (max-width: 768px) {
  #project-process .process-image {
    grid-column: 2;
    border-radius: 8px;
  }
}
@media screen and (max-width: 640px) {
  #project-process .process-image {
    grid-column: 1/-1;
  }
}
#project-process .process-image img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
@media screen and (max-width: 1024px) {
  #project-process .process-image img {
    height: 200px;
  }
}
@media screen and (max-width: 768px) {
  #project-process .process-image img {
    height: auto;
    aspect-ratio: 16/9;
  }
}
#project-process .process-image figcaption {
  padding: 11px 14px 12px;
  color: #787878;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  background: #fff;
  border-top: 1px solid #e5e7eb;
}
@media screen and (max-width: 768px) {
  #project-process .process-image figcaption {
    padding: 10px 12px 11px;
    font-size: 11px;
  }
}
@media screen and (max-width: 640px) {
  #project-process .process-image figcaption {
    padding: 10px 11px;
    line-height: 1.5;
  }
}

#project-related {
  background-color: #fff;
}
#project-related .section-head {
  max-width: 820px;
  margin: 0 0 24px;
}
@media screen and (max-width: 768px) {
  #project-related .section-head {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  #project-related .section-head {
    margin-bottom: 17px;
  }
}
#project-related .section-head .section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: #da2128;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  #project-related .section-head .section-label {
    margin-bottom: 11px;
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  #project-related .section-head .section-label {
    gap: 8px;
    margin-bottom: 10px;
    font-size: 12px;
  }
}
#project-related .section-head .section-label::before {
  content: "";
  width: 32px;
  height: 3px;
  flex-shrink: 0;
  background: #da2128;
  border-radius: 100rem;
}
@media screen and (max-width: 640px) {
  #project-related .section-head .section-label::before {
    width: 26px;
  }
}
#project-related .section-head h2 {
  margin: 0;
  color: #141b44;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  #project-related .section-head h2 {
    font-size: 30px;
    line-height: 1.35;
  }
}
@media screen and (max-width: 640px) {
  #project-related .section-head h2 {
    font-size: 25px;
  }
}
@media screen and (max-width: 480px) {
  #project-related .section-head h2 {
    font-size: 22px;
  }
}
#project-related .related-intro {
  max-width: 920px;
  margin: 0 0 38px;
}
@media screen and (max-width: 768px) {
  #project-related .related-intro {
    max-width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  #project-related .related-intro {
    margin-bottom: 24px;
  }
}
#project-related .related-intro p {
  margin: 0;
  color: #515152;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
}
@media screen and (max-width: 768px) {
  #project-related .related-intro p {
    font-size: 15px;
    line-height: 1.75;
  }
}
@media screen and (max-width: 640px) {
  #project-related .related-intro p {
    font-size: 14px;
    line-height: 1.7;
  }
}
#project-related .project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  #project-related .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}
@media screen and (max-width: 640px) {
  #project-related .project-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }
}
#project-related .project-item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 1024px) {
  #project-related .project-item {
    min-width: 0;
  }
  #project-related .project-item:last-child:nth-child(odd) {
    grid-column: 1/-1;
    justify-self: center;
    width: calc(50% - 11px);
  }
}
@media screen and (max-width: 640px) {
  #project-related .project-item {
    width: 100%;
    border-radius: 12px;
  }
  #project-related .project-item:last-child:nth-child(odd) {
    grid-column: auto;
  }
}
#project-related .project-item:hover {
  border-color: #adb8d9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
#project-related .project-item:hover .project-image img {
  transform: scale(1.035);
}
#project-related .project-item:hover .project-content h3 a {
  color: #374ea2;
}
#project-related .project-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: rgba(55, 78, 162, 0.04);
  border-bottom: 1px solid #e5e7eb;
}
#project-related .project-image a {
  display: block;
  overflow: hidden;
}
#project-related .project-image img {
  display: block;
  width: 100%;
  height: 265px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
@media screen and (max-width: 768px) {
  #project-related .project-image img {
    height: 230px;
  }
}
@media screen and (max-width: 640px) {
  #project-related .project-image img {
    height: auto;
    aspect-ratio: 4/3;
  }
}
#project-related .project-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}
@media screen and (max-width: 768px) {
  #project-related .project-content {
    padding: 20px;
  }
}
@media screen and (max-width: 640px) {
  #project-related .project-content {
    padding: 18px;
  }
}
#project-related .project-content .project-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin: 0 0 14px;
}
@media screen and (max-width: 768px) {
  #project-related .project-content .project-meta {
    gap: 7px 12px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 640px) {
  #project-related .project-content .project-meta {
    margin-bottom: 11px;
  }
}
#project-related .project-content .project-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #787878;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #project-related .project-content .project-meta span {
    font-size: 11px;
  }
}
@media screen and (max-width: 640px) {
  #project-related .project-content .project-meta span {
    font-size: 12px;
  }
}
#project-related .project-content .project-meta span .fa {
  color: #374ea2;
  font-size: 13px;
}
#project-related .project-content h3 {
  margin: 0 0 12px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}
@media screen and (max-width: 768px) {
  #project-related .project-content h3 {
    margin-bottom: 11px;
    font-size: 18px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 640px) {
  #project-related .project-content h3 {
    font-size: 17px;
  }
}
#project-related .project-content h3 a {
  color: #141b44;
  text-decoration: none;
  transition: color 0.2s ease;
}
#project-related .project-content h3 a:hover {
  color: #da2128;
}
#project-related .project-content > p {
  margin: 0 0 22px;
  color: #515152;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  #project-related .project-content > p {
    margin-bottom: 19px;
    font-size: 13px;
    line-height: 1.7;
  }
}
@media screen and (max-width: 640px) {
  #project-related .project-content > p {
    margin-bottom: 17px;
    line-height: 1.65;
  }
}
#project-related .project-content .project-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 11px 18px;
  color: #374ea2;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  background: transparent;
  border: 1px solid #adb8d9;
  border-radius: 8px;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 768px) {
  #project-related .project-content .project-btn {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 12px;
  }
}
@media screen and (max-width: 640px) {
  #project-related .project-content .project-btn {
    width: 100%;
    min-height: 44px;
    font-size: 13px;
  }
}
#project-related .project-content .project-btn:hover {
  color: #fff;
  background: #374ea2;
  border-color: #374ea2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

#project-products {
  background: #0d3192;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
#project-products .section-head {
  color: #fff;
}
@media screen and (max-width: 768px) {
  #project-products .section-head {
    max-width: 100%;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 640px) {
  #project-products .section-head {
    margin-bottom: 26px;
  }
}
#project-products .section-label {
  color: #fff;
}
@media screen and (max-width: 768px) {
  #project-products .section-label {
    margin-bottom: 13px;
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  #project-products .section-label {
    gap: 8px;
    margin-bottom: 11px;
    font-size: 12px;
  }
}
#project-products .section-label::before {
  background-color: #fff;
}
@media screen and (max-width: 640px) {
  #project-products .section-label::before {
    width: 26px;
  }
}
#project-products .section-title {
  color: #fff;
}
@media screen and (max-width: 768px) {
  #project-products .section-title {
    font-size: 30px;
    line-height: 1.35;
  }
}
@media screen and (max-width: 640px) {
  #project-products .section-title {
    font-size: 25px;
  }
}
@media screen and (max-width: 480px) {
  #project-products .section-title {
    font-size: 22px;
  }
}
#project-products .products-intro {
  max-width: 920px;
  margin: 0 0 38px;
}
@media screen and (max-width: 768px) {
  #project-products .products-intro {
    max-width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  #project-products .products-intro {
    margin-bottom: 24px;
  }
}
#project-products .products-intro p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 768px) {
  #project-products .products-intro p {
    font-size: 15px;
    line-height: 1.75;
  }
}
@media screen and (max-width: 640px) {
  #project-products .products-intro p {
    font-size: 14px;
    line-height: 1.7;
  }
}
#project-products .project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  #project-products .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}
@media screen and (max-width: 640px) {
  #project-products .project-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }
}
#project-products .project-item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 1024px) {
  #project-products .project-item {
    min-width: 0;
  }
  #project-products .project-item:last-child:nth-child(odd) {
    grid-column: 1/-1;
    justify-self: center;
    width: calc(50% - 11px);
  }
}
@media screen and (max-width: 640px) {
  #project-products .project-item {
    width: 100%;
    border-radius: 12px;
  }
  #project-products .project-item:last-child:nth-child(odd) {
    grid-column: auto;
  }
}
#project-products .project-item:hover {
  border-color: #adb8d9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
#project-products .project-item:hover .product-image img {
  transform: scale(1.035);
}
#project-products .project-item:hover .product-content h3 a {
  color: #da2128;
}
#project-products .product-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: rgba(55, 78, 162, 0.04);
  border-bottom: 1px solid #e5e7eb;
}
#project-products .product-image a {
  display: block;
}
#project-products .product-image img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
@media screen and (max-width: 768px) {
  #project-products .product-image img {
    height: 230px;
  }
}
@media screen and (max-width: 640px) {
  #project-products .product-image img {
    height: auto;
    aspect-ratio: 4/3;
  }
}
#project-products .product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}
@media screen and (max-width: 768px) {
  #project-products .product-content {
    padding: 20px;
  }
}
@media screen and (max-width: 640px) {
  #project-products .product-content {
    padding: 18px;
  }
}
#project-products .product-content h3 {
  margin: 0 0 12px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #project-products .product-content h3 {
    margin-bottom: 11px;
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  #project-products .product-content h3 {
    font-size: 17px;
  }
}
#project-products .product-content h3 a {
  color: #141b44;
  text-decoration: none;
  transition: color 0.2s ease;
}
#project-products .product-content h3 a:hover {
  color: #da2128;
}
#project-products .product-content p {
  margin: 0 0 22px;
  color: #515152;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  #project-products .product-content p {
    margin-bottom: 19px;
    font-size: 13px;
    line-height: 1.7;
  }
}
@media screen and (max-width: 640px) {
  #project-products .product-content p {
    margin-bottom: 17px;
    line-height: 1.65;
  }
}
#project-products .product-content .product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 11px 18px;
  color: #374ea2;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  background: transparent;
  border: 1px solid #adb8d9;
  border-radius: 8px;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 768px) {
  #project-products .product-content .product-btn {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 12px;
  }
}
@media screen and (max-width: 640px) {
  #project-products .product-content .product-btn {
    width: 100%;
    min-height: 44px;
    font-size: 13px;
  }
}
#project-products .product-content .product-btn:hover {
  color: #fff;
  background: #374ea2;
  border-color: #374ea2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

#project-overview {
  background-color: #fff;
}
#project-overview .overview-wrap {
  display: grid;
  grid-template-columns: 370px minmax(0, 1fr);
  align-items: start;
  gap: 48px;
}
@media screen and (max-width: 1024px) {
  #project-overview .overview-wrap {
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 34px;
  }
}
@media screen and (max-width: 768px) {
  #project-overview .overview-wrap {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 640px) {
  #project-overview .overview-wrap {
    gap: 24px;
  }
}
#project-overview .overview-title {
  position: relative;
  margin: 0 0 22px;
  padding-left: 18px;
  color: #141b44;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #project-overview .overview-title {
    margin-bottom: 18px;
    padding-left: 16px;
    font-size: 22px;
  }
}
@media screen and (max-width: 640px) {
  #project-overview .overview-title {
    margin-bottom: 16px;
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  #project-overview .overview-title {
    font-size: 18px;
  }
}
#project-overview .overview-title::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 4px;
  background: #da2128;
  border-radius: 100rem;
}
@media screen and (max-width: 640px) {
  #project-overview .overview-title::before {
    width: 3px;
  }
}
#project-overview .overview-content {
  min-width: 0;
  padding: 6px 0;
}
@media screen and (max-width: 768px) {
  #project-overview .overview-content {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  #project-overview .project-content {
    font-size: 15px;
    line-height: 1.8;
    overflow-wrap: anywhere;
  }
}
@media screen and (max-width: 640px) {
  #project-overview .project-content {
    font-size: 14px;
    line-height: 1.75;
  }
}
@media screen and (max-width: 768px) {
  #project-overview .project-content p {
    margin-bottom: 17px;
    font-size: 15px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 640px) {
  #project-overview .project-content p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.75;
  }
}
@media screen and (max-width: 768px) {
  #project-overview .project-content table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
#project-overview .project-info {
  position: relative;
  padding: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, #374ea2, #141b44);
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1024px) {
  #project-overview .project-info {
    padding: 26px;
  }
}
@media screen and (max-width: 768px) {
  #project-overview .project-info {
    padding: 26px 24px;
  }
}
@media screen and (max-width: 640px) {
  #project-overview .project-info {
    padding: 23px 20px;
    border-radius: 12px;
  }
}
@media screen and (max-width: 480px) {
  #project-overview .project-info {
    padding: 21px 16px;
  }
}
#project-overview .project-info::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100rem;
  pointer-events: none;
}
#project-overview .project-info h3 {
  position: relative;
  margin: 0 0 24px;
  padding: 0 0 16px;
  color: #fff;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #project-overview .project-info h3 {
    margin-bottom: 21px;
    padding-bottom: 14px;
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  #project-overview .project-info h3 {
    margin-bottom: 18px;
    font-size: 18px;
  }
}
#project-overview .project-info h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 3px;
  background: #da2128;
  border-radius: 100rem;
}
#project-overview .info-list {
  position: relative;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #project-overview .info-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
  }
}
@media screen and (max-width: 640px) {
  #project-overview .info-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
}
#project-overview .info-item {
  display: grid;
  grid-template-columns: 125px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media screen and (max-width: 1024px) {
  #project-overview .info-item {
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 12px;
  }
}
@media screen and (max-width: 768px) {
  #project-overview .info-item {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 0;
  }
  #project-overview .info-item:nth-child(2) {
    padding-top: 0;
  }
  #project-overview .info-item:nth-last-child(2) {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  #project-overview .info-item {
    padding: 12px 0;
  }
  #project-overview .info-item:nth-child(2) {
    padding-top: 12px;
  }
  #project-overview .info-item:nth-last-child(2) {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}
@media screen and (max-width: 480px) {
  #project-overview .info-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }
}
#project-overview .info-item:first-child {
  padding-top: 0;
}
#project-overview .info-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
#project-overview .info-item dt {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}
@media screen and (max-width: 768px) {
  #project-overview .info-item dt {
    font-size: 12px;
  }
}
@media screen and (max-width: 640px) {
  #project-overview .info-item dt {
    font-size: 13px;
  }
}
#project-overview .info-item dd {
  margin: 0;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}
@media screen and (max-width: 768px) {
  #project-overview .info-item dd {
    font-size: 13px;
  }
}
#project-overview .info-item dd a {
  position: relative;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}
#project-overview .info-item dd a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.2s ease;
}
#project-overview .info-item dd a:hover {
  color: #ffd309;
}
#project-overview .info-item dd a:hover::after {
  background: #ffd309;
}
#project-overview .info-item dd time {
  color: inherit;
}

#project-gallery {
  background-color: #fff;
}
#project-gallery .section-head {
  max-width: 820px;
  margin: 0 0 24px;
}
@media screen and (max-width: 768px) {
  #project-gallery .section-head {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  #project-gallery .section-head {
    margin-bottom: 17px;
  }
}
#project-gallery .section-head .section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: #da2128;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  #project-gallery .section-head .section-label {
    margin-bottom: 11px;
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  #project-gallery .section-head .section-label {
    gap: 8px;
    margin-bottom: 10px;
    font-size: 12px;
  }
}
#project-gallery .section-head .section-label::before {
  content: "";
  width: 32px;
  height: 3px;
  flex-shrink: 0;
  background: #da2128;
  border-radius: 100rem;
}
@media screen and (max-width: 640px) {
  #project-gallery .section-head .section-label::before {
    width: 26px;
  }
}
#project-gallery .section-head h2 {
  margin: 0;
  color: #141b44;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  #project-gallery .section-head h2 {
    font-size: 30px;
    line-height: 1.35;
  }
}
@media screen and (max-width: 640px) {
  #project-gallery .section-head h2 {
    font-size: 25px;
  }
}
@media screen and (max-width: 480px) {
  #project-gallery .section-head h2 {
    font-size: 22px;
  }
}
#project-gallery .gallery-intro {
  max-width: 900px;
  margin: 0 0 38px;
}
@media screen and (max-width: 768px) {
  #project-gallery .gallery-intro {
    max-width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  #project-gallery .gallery-intro {
    margin-bottom: 24px;
  }
}
#project-gallery .gallery-intro p {
  margin: 0;
  color: #515152;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
}
@media screen and (max-width: 768px) {
  #project-gallery .gallery-intro p {
    font-size: 15px;
    line-height: 1.75;
  }
}
@media screen and (max-width: 640px) {
  #project-gallery .gallery-intro p {
    font-size: 14px;
    line-height: 1.7;
  }
}
#project-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  #project-gallery .gallery-grid {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  #project-gallery .gallery-grid {
    gap: 18px;
  }
}
@media screen and (max-width: 640px) {
  #project-gallery .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
}
#project-gallery .gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  #project-gallery .gallery-item {
    min-width: 0;
    border-radius: 12px;
  }
}
@media screen and (max-width: 640px) {
  #project-gallery .gallery-item {
    border-radius: 8px;
  }
}
#project-gallery .gallery-item:hover {
  border-color: #adb8d9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}
#project-gallery .gallery-item:hover img {
  transform: scale(1.025);
}
#project-gallery .gallery-item:hover figcaption {
  color: #374ea2;
}
#project-gallery .gallery-item:hover figcaption::before {
  width: 52px;
}
#project-gallery .gallery-item img {
  display: block;
  width: 100%;
  height: 390px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
@media screen and (max-width: 1024px) {
  #project-gallery .gallery-item img {
    height: 330px;
  }
}
@media screen and (max-width: 768px) {
  #project-gallery .gallery-item img {
    height: 270px;
  }
}
@media screen and (max-width: 640px) {
  #project-gallery .gallery-item img {
    height: auto;
    aspect-ratio: 4/3;
  }
}
#project-gallery .gallery-item figcaption {
  position: relative;
  min-height: 70px;
  padding: 16px 18px 17px;
  color: #515152;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  transition: color 0.2s ease;
}
@media screen and (max-width: 768px) {
  #project-gallery .gallery-item figcaption {
    min-height: 64px;
    padding: 14px 16px 15px;
    font-size: 12px;
  }
}
@media screen and (max-width: 640px) {
  #project-gallery .gallery-item figcaption {
    min-height: auto;
    padding: 13px 15px 14px;
    line-height: 1.55;
  }
}
#project-gallery .gallery-item figcaption::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  width: 38px;
  height: 2px;
  background: #da2128;
  transition: width 0.3s ease;
}
@media screen and (max-width: 768px) {
  #project-gallery .gallery-item figcaption::before {
    left: 16px;
    width: 34px;
  }
}
@media screen and (max-width: 640px) {
  #project-gallery .gallery-item figcaption::before {
    left: 15px;
  }
}
#project-gallery .gallery-item:first-child {
  grid-column: 1/-1;
}
@media screen and (max-width: 640px) {
  #project-gallery .gallery-item:first-child {
    grid-column: auto;
  }
}
#project-gallery .gallery-item:first-child img {
  height: 560px;
}
@media screen and (max-width: 1024px) {
  #project-gallery .gallery-item:first-child img {
    height: 480px;
  }
}
@media screen and (max-width: 768px) {
  #project-gallery .gallery-item:first-child img {
    height: 400px;
  }
}
@media screen and (max-width: 640px) {
  #project-gallery .gallery-item:first-child img {
    height: auto;
    aspect-ratio: 16/10;
  }
}
#project-gallery .gallery-item:first-child figcaption {
  min-height: auto;
  padding: 17px 20px 18px;
}
@media screen and (max-width: 768px) {
  #project-gallery .gallery-item:first-child figcaption {
    padding: 15px 17px 16px;
  }
}
@media screen and (max-width: 640px) {
  #project-gallery .gallery-item:first-child figcaption {
    padding: 13px 15px 14px;
  }
}
#project-gallery .gallery-item:first-child figcaption::before {
  left: 20px;
}
@media screen and (max-width: 768px) {
  #project-gallery .gallery-item:first-child figcaption::before {
    left: 17px;
  }
}
@media screen and (max-width: 640px) {
  #project-gallery .gallery-item:first-child figcaption::before {
    left: 15px;
  }
}

#project-content {
  background-color: #fff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
@media screen and (max-width: 768px) {
  #project-content .section-head {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 640px) {
  #project-content .section-head {
    margin-bottom: 26px;
  }
}
@media screen and (max-width: 768px) {
  #project-content .section-title {
    font-size: 30px;
    line-height: 1.35;
  }
}
@media screen and (max-width: 640px) {
  #project-content .section-title {
    font-size: 25px;
  }
}
@media screen and (max-width: 480px) {
  #project-content .section-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  #project-content .section-label {
    margin-bottom: 13px;
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  #project-content .section-label {
    margin-bottom: 11px;
    font-size: 12px;
  }
}
#project-content .content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 3fr);
  align-items: start;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  #project-content .content-wrap {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  #project-content .content-wrap {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
}
@media screen and (max-width: 640px) {
  #project-content .content-wrap {
    gap: 26px;
  }
}
#project-content .content-main {
  min-width: 0;
}
#project-content .project-content {
  min-width: 0;
}
@media screen and (max-width: 768px) {
  #project-content .project-content {
    font-size: 15px;
    line-height: 1.8;
    overflow-wrap: anywhere;
  }
}
@media screen and (max-width: 640px) {
  #project-content .project-content {
    font-size: 14px;
    line-height: 1.75;
  }
}
@media screen and (max-width: 768px) {
  #project-content .project-content p {
    margin-bottom: 17px;
    font-size: 15px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 640px) {
  #project-content .project-content p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.75;
  }
}
@media screen and (max-width: 768px) {
  #project-content .project-content h2 {
    margin: 34px 0 17px;
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  #project-content .project-content h2 {
    margin: 30px 0 15px;
    font-size: 21px;
  }
}
@media screen and (max-width: 768px) {
  #project-content .project-content h3 {
    margin: 31px 0 16px;
    font-size: 21px;
  }
}
@media screen and (max-width: 640px) {
  #project-content .project-content h3 {
    margin: 27px 0 14px;
    padding-left: 14px;
    font-size: 19px;
  }
}
@media screen and (max-width: 768px) {
  #project-content .project-content h4 {
    margin: 26px 0 13px;
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  #project-content .project-content h4 {
    font-size: 17px;
  }
}
@media screen and (max-width: 768px) {
  #project-content .project-content blockquote {
    margin: 26px 0;
    padding: 20px 22px;
    font-size: 15px;
    line-height: 1.75;
  }
}
@media screen and (max-width: 640px) {
  #project-content .project-content blockquote {
    margin: 22px 0;
    padding: 17px 18px;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  #project-content .project-content figure {
    margin: 28px 0;
  }
}
@media screen and (max-width: 640px) {
  #project-content .project-content figure {
    margin: 24px 0;
  }
}
@media screen and (max-width: 768px) {
  #project-content .project-content table {
    display: block;
    max-width: 100%;
    margin: 26px 0;
    overflow-x: auto;
    font-size: 13px;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 640px) {
  #project-content .project-content table {
    margin: 22px 0;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  #project-content .project-content pre {
    max-width: 100%;
    margin: 24px 0;
    padding: 18px;
    overflow-x: auto;
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  #project-content .project-content pre {
    margin: 20px 0;
    padding: 16px;
    font-size: 12px;
  }
}
#project-content .content-sidebar {
  position: sticky;
  top: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media screen and (max-width: 768px) {
  #project-content .content-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}
@media screen and (max-width: 640px) {
  #project-content .content-sidebar {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
}
#project-content .sidebar-nav {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 640px) {
  #project-content .sidebar-nav {
    border-radius: 12px;
  }
}
#project-content .sidebar-nav h3 {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  padding: 22px 24px 18px;
  font-family: "Be Vietnam Pro", sans-serif;
  background: #0d3192;
  border-bottom: 1px solid #e5e7eb;
}
@media screen and (max-width: 768px) {
  #project-content .sidebar-nav h3 {
    padding: 19px 20px 16px;
    font-size: 17px;
  }
}
@media screen and (max-width: 640px) {
  #project-content .sidebar-nav h3 {
    padding: 17px 18px 15px;
    font-size: 16px;
  }
}
#project-content .sidebar-nav h3::after {
  width: 42px;
  height: 3px;
  content: "";
  position: absolute;
  bottom: -1px;
  left: 24px;
  background: #da2128;
  border-radius: 100rem;
}
@media screen and (max-width: 768px) {
  #project-content .sidebar-nav h3::after {
    left: 20px;
    width: 38px;
  }
}
@media screen and (max-width: 640px) {
  #project-content .sidebar-nav h3::after {
    left: 18px;
  }
}
#project-content .sidebar-nav ul {
  margin: 0;
  padding: 10px 0;
  list-style: none;
  counter-reset: project-nav;
}
@media screen and (max-width: 640px) {
  #project-content .sidebar-nav ul {
    padding: 8px 0;
  }
}
#project-content .sidebar-nav li {
  position: relative;
  margin: 0;
  counter-increment: project-nav;
}
#project-content .sidebar-nav li:not(:last-child) {
  border-bottom: 1px solid #e5e7eb;
}
#project-content .sidebar-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 13px 20px 13px 58px;
  color: #515152;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  background: #fff;
  transition: color 0.3s ease, background 0.3s ease;
}
@media screen and (max-width: 768px) {
  #project-content .sidebar-nav a {
    min-height: 48px;
    padding: 11px 16px 11px 52px;
    font-size: 12px;
  }
}
@media screen and (max-width: 640px) {
  #project-content .sidebar-nav a {
    min-height: 46px;
    padding-left: 50px;
  }
}
#project-content .sidebar-nav a::before {
  content: counter(project-nav, decimal-leading-zero);
  position: absolute;
  left: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #374ea2;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  background: rgba(55, 78, 162, 0.08);
  border-radius: 6px;
  transition: color 0.3s ease, background 0.3s ease;
}
@media screen and (max-width: 768px) {
  #project-content .sidebar-nav a::before {
    left: 16px;
    width: 24px;
    height: 24px;
    font-size: 9px;
  }
}
#project-content .sidebar-nav a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: transparent;
  transition: background 0.3s ease;
}
#project-content .sidebar-nav a:hover {
  color: #374ea2;
  background: rgba(55, 78, 162, 0.04);
}
#project-content .sidebar-nav a:hover::before {
  color: #fff;
  background: #374ea2;
}
#project-content .sidebar-nav a:hover::after {
  background: #da2128;
}
#project-content .sidebar-contact {
  position: relative;
  padding: 28px 26px;
  overflow: hidden;
  background: #141b44;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 768px) {
  #project-content .sidebar-contact {
    padding: 24px 22px;
  }
}
@media screen and (max-width: 640px) {
  #project-content .sidebar-contact {
    padding: 22px 20px;
    border-radius: 12px;
  }
}
#project-content .sidebar-contact::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100rem;
  pointer-events: none;
}
#project-content .sidebar-contact h3 {
  position: relative;
  margin: 0 0 16px;
  padding-bottom: 14px;
  color: #fff;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}
@media screen and (max-width: 768px) {
  #project-content .sidebar-contact h3 {
    margin-bottom: 14px;
    padding-bottom: 12px;
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  #project-content .sidebar-contact h3 {
    font-size: 17px;
  }
}
#project-content .sidebar-contact h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #da2128;
  border-radius: 100rem;
}
#project-content .sidebar-contact p {
  position: relative;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  #project-content .sidebar-contact p {
    margin-bottom: 19px;
    font-size: 12px;
    line-height: 1.7;
  }
}
@media screen and (max-width: 640px) {
  #project-content .sidebar-contact p {
    font-size: 13px;
  }
}
#project-content .sidebar-contact .sidebar-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  background: #da2128;
  border: 1px solid #da2128;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  #project-content .sidebar-contact .sidebar-btn {
    width: 100%;
    min-height: 42px;
    padding: 10px 16px;
    font-size: 12px;
  }
}
@media screen and (max-width: 640px) {
  #project-content .sidebar-contact .sidebar-btn {
    min-height: 44px;
    font-size: 13px;
  }
}
#project-content .sidebar-contact .sidebar-btn:hover {
  background: #fa0103;
  border-color: #fa0103;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

#project-result {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

#project-solution {
  border-top: 1px solid #ddd;
}

#project-context {
  border-top: 1px solid #ddd;
}

.section-head {
  max-width: 760px;
  margin: 0 0 42px;
}
@media screen and (max-width: 768px) {
  .section-head {
    max-width: 100%;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 640px) {
  .section-head {
    margin-bottom: 26px;
  }
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #141b44;
  font-family: "Be Vietnam Pro", sans-serif;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 30px;
    line-height: 1.35;
  }
}
@media screen and (max-width: 640px) {
  .section-title {
    font-size: 25px;
  }
}
@media screen and (max-width: 480px) {
  .section-title {
    font-size: 22px;
  }
}

.section-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #da2128;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}
.section-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.section-label {
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .section-label {
    margin-bottom: 13px;
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  .section-label {
    gap: 8px;
    margin-bottom: 11px;
    font-size: 12px;
  }
}
.section-label::before {
  content: "";
  width: 32px;
  height: 3px;
  flex-shrink: 0;
  background: #da2128;
  border-radius: 100rem;
}
@media screen and (max-width: 640px) {
  .section-label::before {
    width: 26px;
  }
}

.project-content {
  color: #333;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
}
@media screen and (max-width: 768px) {
  .project-content {
    font-size: 15px;
    line-height: 1.8;
    overflow-wrap: anywhere;
  }
}
@media screen and (max-width: 640px) {
  .project-content {
    font-size: 14px;
    line-height: 1.75;
  }
}
.project-content :first-child {
  margin-top: 0;
}
.project-content :last-child {
  margin-bottom: 0;
}
.project-content p {
  margin: 0 0 20px;
  color: #515152;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
}
@media screen and (max-width: 768px) {
  .project-content p {
    margin-bottom: 17px;
    font-size: 15px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 640px) {
  .project-content p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.75;
  }
}
.project-content h2,
.project-content h3,
.project-content h4,
.project-content h5,
.project-content h6 {
  color: #141b44;
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 700;
}
.project-content h2 {
  margin: 42px 0 20px;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .project-content h2 {
    margin: 34px 0 17px;
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .project-content h2 {
    margin: 30px 0 15px;
    font-size: 21px;
  }
}
.project-content h3 {
  position: relative;
  margin: 38px 0 18px;
  padding-left: 16px;
  font-size: 24px;
  line-height: 1.45;
}
@media screen and (max-width: 768px) {
  .project-content h3 {
    margin: 31px 0 16px;
    font-size: 21px;
  }
}
@media screen and (max-width: 640px) {
  .project-content h3 {
    margin: 27px 0 14px;
    padding-left: 14px;
    font-size: 19px;
  }
}
.project-content h3::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  width: 4px;
  background: #da2128;
  border-radius: 100rem;
}
@media screen and (max-width: 640px) {
  .project-content h3::before {
    width: 3px;
  }
}
.project-content h4 {
  margin: 30px 0 14px;
  color: #374ea2;
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .project-content h4 {
    margin: 26px 0 13px;
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .project-content h4 {
    font-size: 17px;
  }
}
.project-content h5 {
  margin: 26px 0 12px;
  font-size: 17px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .project-content h5 {
    margin: 23px 0 11px;
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .project-content h5 {
    font-size: 15px;
  }
}
.project-content h6 {
  margin: 24px 0 10px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .project-content h6 {
    margin: 21px 0 9px;
    font-size: 14px;
  }
}
@media screen and (max-width: 640px) {
  .project-content h6 {
    font-size: 13px;
  }
}
.project-content strong,
.project-content b {
  color: #333;
  font-weight: 700;
}
.project-content em {
  font-style: italic;
}
.project-content a {
  color: #374ea2;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(55, 78, 162, 0.35);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.project-content a:hover {
  color: #da2128;
  text-decoration-color: #da2128;
}
.project-content ul,
.project-content ol {
  margin: 0 0 24px;
  padding-left: 26px;
}
@media screen and (max-width: 768px) {
  .project-content ul,
  .project-content ol {
    margin-bottom: 21px;
    padding-left: 23px;
  }
}
@media screen and (max-width: 640px) {
  .project-content ul,
  .project-content ol {
    margin-bottom: 18px;
    padding-left: 20px;
  }
}
.project-content ul li,
.project-content ol li {
  margin: 0 0 10px;
  padding-left: 5px;
  color: #515152;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .project-content ul li,
  .project-content ol li {
    margin-bottom: 8px;
    padding-left: 4px;
    font-size: 15px;
    line-height: 1.75;
  }
}
@media screen and (max-width: 640px) {
  .project-content ul li,
  .project-content ol li {
    font-size: 14px;
    line-height: 1.7;
  }
}
.project-content ul li:last-child,
.project-content ol li:last-child {
  margin-bottom: 0;
}
.project-content ul li::marker,
.project-content ol li::marker {
  color: #374ea2;
  font-weight: 700;
}
.project-content ul ul,
.project-content ul ol,
.project-content ol ul,
.project-content ol ol {
  margin: 10px 0 0;
}
.project-content ul li::marker {
  color: #da2128;
}
.project-content blockquote {
  position: relative;
  margin: 30px 0;
  padding: 22px 26px;
  color: #515152;
  font-size: 16px;
  font-style: italic;
  line-height: 1.8;
  background: rgba(55, 78, 162, 0.045);
  border-left: 4px solid #374ea2;
  border-radius: 0 12px 12px 0;
}
@media screen and (max-width: 768px) {
  .project-content blockquote {
    margin: 26px 0;
    padding: 20px 22px;
    font-size: 15px;
    line-height: 1.75;
  }
}
@media screen and (max-width: 640px) {
  .project-content blockquote {
    margin: 22px 0;
    padding: 17px 18px;
    font-size: 14px;
    border-left-width: 3px;
    border-radius: 0 8px 8px 0;
  }
}
.project-content blockquote p {
  color: inherit;
}
.project-content blockquote p:last-child {
  margin-bottom: 0;
}
.project-content figure {
  margin: 32px 0;
}
@media screen and (max-width: 768px) {
  .project-content figure {
    margin: 28px 0;
  }
}
@media screen and (max-width: 640px) {
  .project-content figure {
    margin: 24px 0;
  }
}
.project-content figure img {
  margin: 0;
}
.project-content figure figcaption {
  position: relative;
  margin: 0;
  padding: 12px 16px 13px;
  color: #787878;
  font-size: 13px;
  font-style: normal;
  line-height: 1.6;
  background: rgba(55, 78, 162, 0.035);
  border: 1px solid #e5e7eb;
  border-top: 0;
  border-radius: 0 0 12px 12px;
}
@media screen and (max-width: 768px) {
  .project-content figure figcaption {
    padding: 11px 14px 12px;
    font-size: 12px;
  }
}
@media screen and (max-width: 640px) {
  .project-content figure figcaption {
    padding: 10px 12px 11px;
    line-height: 1.55;
    border-radius: 0 0 8px 8px;
  }
}
.project-content figure figcaption::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  width: 38px;
  height: 2px;
  background: #da2128;
}
@media screen and (max-width: 768px) {
  .project-content figure figcaption::before {
    left: 14px;
    width: 34px;
  }
}
@media screen and (max-width: 640px) {
  .project-content figure figcaption::before {
    left: 12px;
  }
}
.project-content img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 640px) {
  .project-content img {
    margin: 24px auto;
    border-radius: 8px;
  }
}
.project-content figure img {
  width: 100%;
  margin: 0;
  border: 1px solid #e5e7eb;
  border-radius: 12px 12px 0 0;
  box-shadow: none;
}
@media screen and (max-width: 640px) {
  .project-content figure img {
    border-radius: 8px 8px 0 0;
  }
}
.project-content table {
  width: 100%;
  margin: 30px 0;
  border-spacing: 0;
  border-collapse: separate;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .project-content table {
    display: block;
    max-width: 100%;
    margin: 26px 0;
    overflow-x: auto;
    font-size: 13px;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 640px) {
  .project-content table {
    margin: 22px 0;
    font-size: 12px;
    border-radius: 8px;
  }
}
.project-content table caption {
  padding: 16px 20px;
  color: #fff;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  background: #374ea2;
}
@media screen and (max-width: 768px) {
  .project-content table caption {
    padding: 14px 17px;
    font-size: 15px;
  }
}
@media screen and (max-width: 640px) {
  .project-content table caption {
    padding: 13px 15px;
    font-size: 14px;
  }
}
.project-content table thead th {
  color: #fff;
  font-weight: 700;
  background: #222d5a;
}
.project-content table th,
.project-content table td {
  padding: 14px 18px;
  vertical-align: top;
  text-align: left;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
@media screen and (max-width: 768px) {
  .project-content table th,
  .project-content table td {
    padding: 12px 15px;
  }
}
@media screen and (max-width: 640px) {
  .project-content table th,
  .project-content table td {
    padding: 11px 13px;
  }
}
.project-content table th:last-child,
.project-content table td:last-child {
  border-right: 0;
}
.project-content table th {
  color: #141b44;
  font-weight: 700;
  background: rgba(55, 78, 162, 0.045);
}
.project-content table td {
  color: #515152;
}
.project-content table tbody tr {
  transition: background 0.2s ease;
}
.project-content table tbody tr:nth-child(even) {
  background: rgba(55, 78, 162, 0.02);
}
.project-content table tbody tr:hover {
  background: rgba(55, 78, 162, 0.055);
}
.project-content table tbody tr:last-child th,
.project-content table tbody tr:last-child td {
  border-bottom: 0;
}
.project-content hr {
  height: 1px;
  margin: 38px 0;
  background: #e5e7eb;
  border: 0;
}
@media screen and (max-width: 768px) {
  .project-content hr {
    margin: 32px 0;
  }
}
@media screen and (max-width: 640px) {
  .project-content hr {
    margin: 27px 0;
  }
}
.project-content code {
  padding: 2px 6px;
  color: #141b44;
  font-size: 14px;
  background: rgba(55, 78, 162, 0.07);
  border-radius: 4px;
}
@media screen and (max-width: 640px) {
  .project-content code {
    font-size: 12px;
    overflow-wrap: anywhere;
  }
}
.project-content pre {
  margin: 28px 0;
  padding: 20px 22px;
  overflow: auto;
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
  background: #141b44;
  border-radius: 12px;
}
@media screen and (max-width: 768px) {
  .project-content pre {
    max-width: 100%;
    margin: 24px 0;
    padding: 18px;
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  .project-content pre {
    margin: 20px 0;
    padding: 16px;
    font-size: 12px;
    border-radius: 8px;
  }
}
.project-content pre code {
  padding: 0;
  color: inherit;
  background: transparent;
  border-radius: 0px;
}

/*# sourceMappingURL=project.css.map */
