.news-detail-page {
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
  font-family: "Montserrat", sans-serif;
}

.news-detail-page,
.news-detail-page * {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

.news-detail-page .container {
  width: min(100% - 32px, 1320px);
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

/* Breadcrumb */

.news-detail-breadcrumb-section {
  padding: 18px 0 13px;
}

.news-detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #7f8994;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
}

.news-detail-breadcrumb a {
  color: #7f8994;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.news-detail-breadcrumb a:hover {
  color: #173f67;
}

.news-detail-breadcrumb span {
  color: #9ca6af;
  font-size: 10px;
}

.news-detail-breadcrumb strong {
  color: #173f67;
  font-size: 14px;
  font-weight: 700;
}

.news-detail-full-line {
  width: 100%;
  height: 1px;
  background: #dfe5eb;
}

/* Main */

.news-detail-main-section {
  padding: 28px 0 70px;
}

/* Detail wrapper */

.news-detail-wrapper {
  width: 100%;
}

.news-detail-header-row {
  width: 100%;
  display: block;
  margin-bottom: 24px;
}

.news-detail-date {
  margin-bottom: 12px;
  color: #143d6b;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
}

.news-detail-title {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: #143d6b;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.45px;
}

.news-detail-title-line {
  width: 100%;
  max-width: 180px;
  height: 2px;
  margin: 18px 0 0;
  background: #d9dfe6;
}

/* M?zmun v? s?kill?r */

.news-detail-content-row {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 34px;
  align-items: start;
}

.news-detail-left {
  width: 100%;
  min-width: 0;
}

.news-detail-content {
  width: 100%;
  max-width: 100%;
  color: #5a5f66;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
  letter-spacing: -0.1px;
  text-align: justify;
}

.news-detail-content p {
  margin: 0 0 18px;
}

/* Sag t?r?f s?kill?r */

.news-detail-right {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.news-detail-right-single {
  grid-template-columns: 1fr;
}

.news-detail-image-box {
  position: relative;
  width: 100%;
  height: 178px;
  overflow: hidden;
  border-radius: 8px;
  background: #edf2f7;
  border: 1px solid #e7edf3;
  padding: 0;
  outline: none;
  cursor: pointer;
  display: block;
  appearance: none;
  -webkit-appearance: none;
}

.news-detail-image-box:focus,
.news-detail-image-box:focus-visible,
.news-detail-image-box:active {
  outline: none;
  border-color: #143d6b;
}

.news-detail-right-single .news-detail-image-box {
  height: 390px;
}

.news-detail-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.news-detail-image-box:hover .news-detail-image {
  transform: scale(1.025);
}

.news-detail-image-zoom {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(20, 61, 107, 0.88);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(5px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}

.news-detail-image-box:hover .news-detail-image-zoom {
  opacity: 1;
  transform: translateY(0);
}

.news-detail-image-zoom i {
  font-size: 15px;
  line-height: 1;
}

.news-detail-image-empty {
  grid-column: 1 / -1;
  width: 100%;
  height: 178px;
  border-radius: 8px;
  background: #edf2f7;
  border: 1px solid #e7edf3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7f8994;
  font-size: 14px;
  font-weight: 600;
}

.news-detail-image-empty p {
  margin: 0;
}

/* Full screen image carousel modal */

body.news-image-modal-open {
  overflow: hidden;
}

.news-image-modal {
  position: fixed;
  inset: 0;
  z-index: 10000000;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 92px 104px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.news-image-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.news-image-modal-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000005;
  height: 48px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.news-image-modal-counter {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  pointer-events: auto;
}

.news-image-modal-toolbar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}

.news-image-modal-tool {
  width: 34px;
  height: 34px;
  border: 0;
  outline: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.news-image-modal-tool i {
  font-size: 18px;
  line-height: 1;
}

.news-image-modal-tool:hover,
.news-image-modal-tool.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.news-image-modal-tool:focus,
.news-image-modal-tool:focus-visible,
.news-image-modal-tool:active {
  outline: none;
  border: 0;
}

.news-image-modal-close i {
  font-size: 18px;
}

.news-image-modal-inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1360px;
  max-height: calc(100vh - 176px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.news-image-modal-img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.2s ease;
  user-select: none;
}

.news-image-modal-img.is-zoomed {
  cursor: zoom-out;
}

.news-image-modal-nav {
  position: fixed;
  top: 50%;
  z-index: 10000004;
  width: 54px;
  height: 54px;
  border: 0;
  outline: none;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transform: translateY(-50%);
  appearance: none;
  -webkit-appearance: none;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.news-image-modal-nav i {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.news-image-modal-nav:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-50%) scale(1.05);
}

.news-image-modal-nav:focus,
.news-image-modal-nav:focus-visible,
.news-image-modal-nav:active {
  outline: none;
  border: 0;
}

.news-image-modal-prev {
  left: 18px;
}

.news-image-modal-next {
  right: 18px;
}

.news-image-modal-thumbs-wrap {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 10000005;
  width: 100%;
  padding: 0 18px;
}

.news-image-modal-thumbs {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.45) transparent;
}

.news-image-modal-thumbs::-webkit-scrollbar {
  height: 6px;
}

.news-image-modal-thumbs::-webkit-scrollbar-track {
  background: transparent;
}

.news-image-modal-thumbs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.news-image-modal-thumb {
  flex: 0 0 84px;
  width: 84px;
  height: 68px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  outline: none;
  border-radius: 3px;
  overflow: hidden;
  background: #151515;
  padding: 0;
  cursor: pointer;
  opacity: 0.78;
  appearance: none;
  -webkit-appearance: none;
  transition:
    opacity 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.news-image-modal-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.news-image-modal-thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.news-image-modal-thumb.is-active {
  opacity: 1;
  border-color: #e11d2e;
}

.news-image-modal-thumb:focus,
.news-image-modal-thumb:focus-visible,
.news-image-modal-thumb:active {
  outline: none;
}

/* Other News */

.other-news-section {
  padding-top: 72px;
}

.other-news-title {
  margin: 0 0 34px;
  color: #143d6b;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.6px;
}

.other-news-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.other-news-card {
  width: 100%;
  height: 370px;
  min-height: 370px;
  background: #ffffff;
  border: 1px solid #e7edf3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.other-news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 61, 107, 0.18);
  box-shadow: 0 10px 26px rgba(20, 61, 107, 0.07);
}

.other-news-image-link {
  display: block;
  width: 100%;
  height: 205px;
  min-height: 205px;
  flex: 0 0 205px;
  overflow: hidden;
  background: #dde5ee;
  text-decoration: none;
  border-radius: 8px 8px 0 0;
}

.other-news-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 8px 8px 0 0;
  transition: transform 0.35s ease;
}

.other-news-card:hover .other-news-image {
  transform: scale(1.025);
}

.other-news-image-empty {
  width: 100%;
  height: 100%;
  min-height: 205px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(135deg, #e8edf3 0%, #d9e2ec 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.other-news-image-empty p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #6b7785;
}

.other-news-body {
  width: 100%;
  flex: 1;
  min-height: 0;
  background: #ffffff;
  padding: 12px 13px 12px;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 8px 8px;
  box-sizing: border-box;
}

.other-news-date {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: nowrap;
  min-width: 0;
  color: #143d6b;
}

.other-news-date-icon {
  width: 17px;
  height: 17px;
  object-fit: contain;
  flex: 0 0 17px;
}

.other-news-date span {
  display: block;
  min-width: 0;
  font-size: 8.8px;
  font-weight: 500;
  color: #143d6b;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.other-news-card-title {
  margin: 0 0 10px;
  color: #575757;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.other-news-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.other-news-card-title a:hover {
  color: #143d6b;
}

.other-news-detail-btn {
  margin-top: auto;
  align-self: flex-start;
  min-width: 58px;
  min-height: 20px;
  padding: 2px 8px;
  border: 1px solid #143d6b;
  border-radius: 999px;
  background: #ffffff;
  color: #143d6b;
  font-size: 7.4px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

.other-news-detail-btn span {
  font-size: 11px;
  line-height: 1;
  position: relative;
  top: -1px;
}

.other-news-detail-btn:hover {
  background: #143d6b;
  color: #ffffff;
  border-color: #143d6b;
  transform: translateY(-1px);
  text-decoration: none;
}

/* Responsive */

@media (max-width: 1399px) {
  .other-news-title {
    font-size: 34px;
  }

  .news-detail-content-row {
    grid-template-columns: minmax(0, 1fr) 500px;
    gap: 28px;
  }

  .news-detail-image-box,
  .news-detail-image-empty {
    height: 170px;
  }

  .news-detail-right-single .news-detail-image-box {
    height: 370px;
  }

  .other-news-card {
    height: 360px;
    min-height: 360px;
  }

  .other-news-image-link,
  .other-news-image-empty {
    height: 195px;
    min-height: 195px;
    flex-basis: 195px;
  }
}

@media (max-width: 1199px) {
  .news-detail-page .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .news-detail-main-section {
    padding: 24px 0 62px;
  }

  .other-news-title {
    font-size: 31px;
  }

  .news-detail-title {
    font-size: 24px;
  }

  .news-detail-content-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .news-detail-right,
  .news-detail-right-single {
    max-width: 560px;
  }

  .news-detail-image-box,
  .news-detail-image-empty {
    height: 185px;
  }

  .news-detail-right-single .news-detail-image-box {
    height: 380px;
  }

  .other-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .other-news-card {
    height: 395px;
    min-height: 395px;
  }

  .other-news-image-link,
  .other-news-image-empty {
    height: 230px;
    min-height: 230px;
    flex-basis: 230px;
  }

  .other-news-body {
    padding: 13px 15px 13px;
  }

  .other-news-date-icon {
    width: 19px;
    height: 19px;
    flex-basis: 19px;
  }

  .other-news-date span {
    font-size: 10px;
  }

  .other-news-card-title {
    font-size: 12px;
  }

  .other-news-detail-btn {
    min-width: 64px;
    min-height: 22px;
    font-size: 8px;
  }
}

@media (max-width: 991px) {
  .news-detail-page .container {
    width: min(100% - 24px, 1320px);
    padding-left: 12px;
    padding-right: 12px;
  }

  .other-news-title {
    font-size: 28px;
  }

  .news-detail-title {
    font-size: 22px;
  }

  .news-detail-content {
    font-size: 15.5px;
    line-height: 1.62;
  }

  .news-detail-right,
  .news-detail-right-single {
    max-width: 100%;
  }

  .news-detail-image-box,
  .news-detail-image-empty {
    height: 170px;
  }

  .news-detail-right-single .news-detail-image-box {
    height: 360px;
  }

  .news-image-modal {
    padding: 64px 68px 100px;
  }

  .news-image-modal-prev {
    left: 10px;
  }

  .news-image-modal-next {
    right: 10px;
  }

  .news-image-modal-nav {
    width: 48px;
    height: 48px;
  }

  .news-image-modal-nav i {
    font-size: 29px;
  }

  .news-image-modal-thumb {
    flex-basis: 76px;
    width: 76px;
    height: 60px;
  }

  .other-news-card {
    height: 375px;
    min-height: 375px;
  }

  .other-news-image-link,
  .other-news-image-empty {
    height: 210px;
    min-height: 210px;
    flex-basis: 210px;
  }

  .other-news-date {
    margin-bottom: 8px;
  }

  .other-news-card-title {
    -webkit-line-clamp: 4;
    margin-bottom: 12px;
  }
}

@media (max-width: 767px) {
  .news-detail-page .container {
    width: min(100% - 20px, 1320px);
    padding-left: 8px;
    padding-right: 8px;
  }

  .news-detail-main-section {
    padding: 22px 0 54px;
  }

  .other-news-title {
    font-size: 25px;
  }

  .news-detail-title {
    font-size: 20px;
  }

  .news-detail-date {
    font-size: 12px;
  }

  .news-detail-content {
    font-size: 14.5px;
    line-height: 1.58;
  }

  .news-detail-right {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .news-detail-right-single {
    grid-template-columns: 1fr;
  }

  .news-detail-image-box,
  .news-detail-image-empty {
    height: 145px;
  }

  .news-detail-right-single .news-detail-image-box {
    height: 330px;
  }

  .news-image-modal {
    padding: 62px 54px 96px;
  }

  .news-image-modal-top {
    height: 46px;
    padding: 0 12px;
  }

  .news-image-modal-toolbar {
    gap: 4px;
  }

  .news-image-modal-tool {
    width: 32px;
    height: 32px;
  }

  .news-image-modal-tool i {
    font-size: 16px;
  }

  .news-image-modal-nav {
    width: 42px;
    height: 42px;
  }

  .news-image-modal-nav i {
    font-size: 26px;
  }

  .news-image-modal-thumb {
    flex-basis: 68px;
    width: 68px;
    height: 54px;
  }

  .other-news-section {
    padding-top: 54px;
  }

  .other-news-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .other-news-card {
    width: 100%;
    max-width: 100%;
    height: 350px;
    min-height: 350px;
    border-radius: 7px;
  }

  .other-news-image-link,
  .other-news-image-empty {
    height: 190px;
    min-height: 190px;
    flex-basis: 190px;
    border-radius: 7px 7px 0 0;
  }

  .other-news-image {
    border-radius: 7px 7px 0 0;
  }

  .other-news-body {
    padding: 12px 14px 12px;
    border-radius: 0 0 7px 7px;
  }

  .other-news-date-icon {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
  }

  .other-news-date span {
    font-size: 9.5px;
  }

  .other-news-card-title {
    font-size: 11.8px;
    line-height: 1.35;
  }
}

@media (max-width: 575px) {
  .news-detail-page .container {
    width: min(100% - 18px, 1320px);
    padding-left: 6px;
    padding-right: 6px;
  }

  .other-news-title {
    font-size: 23px;
  }

  .news-detail-title {
    font-size: 19px;
  }

  .news-detail-title-line {
    max-width: 150px;
    margin-top: 15px;
  }

  .news-detail-content-row {
    gap: 22px;
  }

  .news-detail-right {
    grid-template-columns: 1fr;
  }

  .news-detail-image-box,
  .news-detail-image-empty {
    height: 210px;
  }

  .news-detail-right-single .news-detail-image-box {
    height: 290px;
  }

  .news-image-modal {
    padding: 62px 12px 112px;
  }

  .news-image-modal-inner {
    max-height: calc(100vh - 188px);
  }

  .news-image-modal-top {
    height: 46px;
    padding: 0 10px;
  }

  .news-image-modal-counter {
    font-size: 12px;
  }

  .news-image-modal-toolbar {
    gap: 2px;
  }

  .news-image-modal-tool {
    width: 30px;
    height: 30px;
  }

  .news-image-modal-nav {
    top: auto;
    bottom: 28px;
    width: 42px;
    height: 42px;
    transform: none;
    background: rgba(255, 255, 255, 0.08);
  }

  .news-image-modal-nav:hover {
    transform: scale(1.05);
  }

  .news-image-modal-prev {
    left: calc(50% - 58px);
  }

  .news-image-modal-next {
    right: calc(50% - 58px);
  }

  .news-image-modal-thumbs-wrap {
    bottom: 72px;
    padding: 0 10px;
  }

  .news-image-modal-thumb {
    flex-basis: 62px;
    width: 62px;
    height: 50px;
  }

  .other-news-title {
    margin-bottom: 24px;
  }

  .other-news-card {
    height: 330px;
    min-height: 330px;
    border-radius: 7px;
  }

  .other-news-image-link,
  .other-news-image-empty {
    height: 170px;
    min-height: 170px;
    flex-basis: 170px;
  }

  .other-news-body {
    padding: 11px 13px 11px;
  }

  .other-news-date {
    gap: 7px;
    margin-bottom: 8px;
  }

  .other-news-date-icon {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }

  .other-news-date span {
    font-size: 9px;
  }

  .other-news-card-title {
    font-size: 11.4px;
    line-height: 1.3;
    margin-bottom: 11px;
  }

  .other-news-detail-btn {
    min-width: 60px;
    min-height: 21px;
    font-size: 7.6px;
  }
}

@media (max-width: 480px) {
  .news-detail-main-section {
    padding: 20px 0 48px;
  }

  .other-news-title {
    font-size: 21px;
  }

  .news-detail-title {
    font-size: 18px;
  }

  .news-detail-content {
    font-size: 14px;
    line-height: 1.55;
  }

  .news-detail-image-box,
  .news-detail-image-empty {
    height: 190px;
  }

  .news-detail-right-single .news-detail-image-box {
    height: 260px;
  }

  .other-news-card {
    height: 305px;
    min-height: 305px;
    border-radius: 6px;
  }

  .other-news-image-link,
  .other-news-image-empty {
    height: 155px;
    min-height: 155px;
    flex-basis: 155px;
  }

  .other-news-body {
    padding: 11px 12px 11px;
  }

  .other-news-date {
    margin-bottom: 7px;
  }

  .other-news-date-icon {
    width: 15px;
    height: 15px;
    flex-basis: 15px;
  }

  .other-news-date span {
    font-size: 8.6px;
  }

  .other-news-card-title {
    font-size: 11px;
    line-height: 1.28;
  }
}

@media (max-width: 420px) {
  .news-detail-page .container {
    width: min(100% - 14px, 1320px);
    padding-left: 4px;
    padding-right: 4px;
  }

  .other-news-title {
    font-size: 20px;
  }

  .news-detail-title {
    font-size: 17px;
  }

  .news-detail-date {
    font-size: 11px;
  }

  .news-detail-image-box,
  .news-detail-image-empty {
    height: 175px;
  }

  .news-detail-right-single .news-detail-image-box {
    height: 240px;
  }

  .news-image-modal {
    padding: 58px 10px 108px;
  }

  .news-image-modal-tool {
    width: 28px;
    height: 28px;
  }

  .news-image-modal-tool i {
    font-size: 15px;
  }

  .news-image-modal-thumb {
    flex-basis: 56px;
    width: 56px;
    height: 46px;
  }

  .other-news-card {
    height: 288px;
    min-height: 288px;
    border-radius: 6px;
  }

  .other-news-image-link,
  .other-news-image-empty {
    height: 140px;
    min-height: 140px;
    flex-basis: 140px;
  }

  .other-news-body {
    padding: 10px 11px 10px;
  }

  .other-news-date {
    margin-bottom: 7px;
  }

  .other-news-date span {
    font-size: 8.2px;
  }

  .other-news-card-title {
    font-size: 10.6px;
    line-height: 1.25;
  }

  .other-news-detail-btn {
    min-width: 58px;
    min-height: 20px;
    padding: 2px 8px;
    font-size: 7.3px;
  }
}

@media (max-width: 360px) {
  .news-detail-main-section {
    padding: 18px 0 44px;
  }

  .other-news-title {
    font-size: 19px;
  }

  .news-detail-title {
    font-size: 16px;
  }

  .news-detail-content {
    font-size: 13.5px;
  }

  .news-detail-image-box,
  .news-detail-image-empty {
    height: 160px;
  }

  .news-detail-right-single .news-detail-image-box {
    height: 220px;
  }

  .other-news-card {
    height: 275px;
    min-height: 275px;
    border-radius: 5px;
  }

  .other-news-image-link,
  .other-news-image-empty {
    height: 128px;
    min-height: 128px;
    flex-basis: 128px;
  }

  .other-news-image {
    border-radius: 5px 5px 0 0;
  }

  .other-news-body {
    padding: 9px 10px 9px;
    border-radius: 0 0 5px 5px;
  }

  .other-news-date-icon {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
  }

  .other-news-date span {
    font-size: 7.8px;
  }

  .other-news-card-title {
    font-size: 10.1px;
    line-height: 1.23;
    margin-bottom: 9px;
  }

  .other-news-detail-btn {
    min-width: 56px;
    min-height: 19px;
    font-size: 7px;
  }
}

.news-detail-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.news-detail-images-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.news-detail-right.news-detail-right-single .news-detail-images-grid {
    grid-template-columns: 1fr;
}

.news-detail-youtube {
    width: 100%;
    display: block;
    margin-top: 4px;
    border-radius: 14px;
    overflow: hidden;
    background: #000000;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
    aspect-ratio: 16 / 9;
}

.news-detail-youtube iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

@media (max-width: 768px) {
    .news-detail-images-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .news-detail-youtube {
        margin-top: 2px;
        border-radius: 12px;
    }
}