@charset "UTF-8";

.real-estate {
  background: #f2f2f2;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.real-estate__media {
  position: relative;
  margin: 8px;
  overflow: hidden;
  border-radius: 8px;
}

.real-estate__media .hover-effect::before {
  content: "";
  padding-top: 82.8451882845%;
  display: block;
}

.real-estate__media .hover-effect:hover img {
  transform: scale(1.09);
}

.real-estate__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.real-estate__badges {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.real-estate__tag {
  background: rgba(255, 255, 255, 0.9);
  padding: 1px 9px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--color-1);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.real-estate__action {
  display: flex;
  gap: 8px;
}

.real-estate__action-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  padding: 6px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
  transition: all 0.3s ease;
}

.real-estate__action-btn.active {
  background: var(--bg-linear);
  color: white;
}

.real-estate__action-btn:hover {
  background: var(--bg-linear);
  color: white;
}

.real-estate__action-btn:hover .icon svg,
.real-estate__action-btn:hover .icon img {
  fill: #fff;
  filter: brightness(2);
}

.real-estate__action-btn .icon {
  line-height: 0;
}

.real-estate__action-btn .icon svg,
.real-estate__action-btn .icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.real-estate__title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 12px 0;
  padding: 0 13px;
  text-align: center;
  line-height: 1.4;
}

.real-estate__title a {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
}

.real-estate__price-row {
  padding: 3px 13px;
  background: linear-gradient(45deg, #dcdcdc, #fcfcfc);
}

.real-estate__price-row .icon-price {
  margin-right: 3px;
  line-height: 0;
  transform: translateY(2px);
  display: inline-block;
}

.real-estate__price-row .icon-price svg {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.real-estate__price {
  color: #d31201;
  font-size: 14px;
  font-weight: 500;
}

.real-estate__unit-price {
  color: var(--color-3);
  font-size: 13px;
}

.real-estate__location {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--color-3);
  font-size: 14px;
  padding: 10px 13px;
}

.real-estate__location i {
  margin-top: 3px;
  min-width: 12px;
}

.real-estate__specs {
  display: flex;
  gap: 20px;
  padding: 0 13px 12px;
  border-top: 1px solid #f0f0f0;
}

.real-estate__spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
}

.hover-effect {
  position: relative;
  overflow: hidden;
  display: flex;
}

.hover-effect::after {
  position: absolute;
  width: 200%;
  height: 0;
  left: 50%;
  top: 50%;
  background-color: hsla(0, 0%, 100%, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  z-index: 1;
}

.hover-effect:hover::after {
  height: 250%;
  transition: all 0.6s linear;
  background-color: transparent;
}

.common-arrow .slick-arrow {
  opacity: 0;
  z-index: 9;
}

.common-arrow .slick-arrow::before {
  display: none;
}

.common-arrow:hover .slick-arrow {
  opacity: 1;
}

.common-arrow .slick-arrow {
  background: var(--bg-linear);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.common-arrow .slick-arrow svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

@media (max-width: 1200px) {
  .common-arrow .slick-arrow {
    width: 25px;
    height: 25px;
  }

  .common-arrow .slick-arrow svg {
    width: 15px;
    height: 15px;
  }

  .common-arrow .slick-prev {
    left: 0;
  }

  .common-arrow .slick-next {
    right: 0;
  }
}

.input-control {
  width: 100%;
  height: 50px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  padding: 8px 16px;
  resize: none;
}

select.input-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../images/icon-down-black.png);
  background-size: 14px;
  background-position: right 10px center;
  background-repeat: no-repeat;
}

.icon-chevron-down:after {
  content: "";
  width: 13px;
  height: 13px;
  mask-image: url(../images/icon-down-black.png);
  mask-size: 14px;
  mask-position: center;
  mask-repeat: no-repeat;
  background-color: #888;
  display: block;
}

.breadcrumb__list {
  margin-bottom: 10px;
}

.breadcrumb__list li {
  display: inline;
}

.breadcrumb__list li:not(:last-child)::after {
  content: "⁄";
}

.breadcrumb__list li:last-child {
  font-weight: bold;
}

.c-btn-01 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: white;
  color: var(--color-1);
  border: 1px solid var(--color-1);
  border-radius: 8px;
  padding: 7px 24px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  width: fit-content;
  transition: all 0.3s ease;
}

.c-btn-01 .icon {
  line-height: 0;
}

.c-btn-01 .icon svg {
  width: 20px;
  height: 20px;
}

.heading-block {
  margin-bottom: 25px;
}

.heading-block__title {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(45deg, #dcdcdc, white);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  gap: 5px;
}

.heading-block__title .icon {
  line-height: 0;
}

.heading-block__title .icon img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.heading-block__more {
  font-weight: 400;
}

.estate-slider .slick-list {
  margin: 0 -10px;
}

.estate-slider .slick-slide {
  margin: 0 10px;
}

.js-slide .slick-list {
  margin: 0 -10px;
}

.js-slide .slick-slide {
  margin: 0 10px;
}

.js-slide .slick-track {
  margin-left: 0;
  margin-right: 0;
}

/* News Sidebar */
.sidebar-box {
  position: sticky;
  top: 100px;
}

.news-sidebar {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

.news-sidebar__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 10px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
}

.news-sidebar__title i {
  color: var(--color-1);
  font-size: 24px;
}

.news-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-sidebar__item {
  display: flex;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.news-sidebar__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news-sidebar__image-link {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.news-sidebar__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-sidebar__image-link:hover .news-sidebar__image {
  transform: scale(1.05);
}

.news-sidebar__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-sidebar__item-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin: 0;
  line-height: 1.4;
}

.news-sidebar__item-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-sidebar__item-title a:hover {
  color: var(--color-1);
}

.news-sidebar__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #6b7280;
  flex-wrap: wrap;
}

.news-sidebar__date {
  color: #6b7280;
}

.news-sidebar__separator {
  opacity: 0.5;
}

.news-sidebar__views {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #ef4444;
  font-weight: 600;
}

.news-sidebar__views i {
  font-size: 14px;
  color: #ef4444;
}

.news-sidebar__newsletter {
  background: var(--bg-linear);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  color: #fff;
}

.news-sidebar__newsletter-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-sidebar__newsletter-icon i {
  font-size: 30px;
}

.news-sidebar__newsletter-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.news-sidebar__newsletter-text {
  font-size: 14px;
  margin: 0 0 20px 0;
  opacity: 0.9;
}

.news-sidebar__newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-sidebar__newsletter-input {
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
}

.news-sidebar__newsletter-btn {
  padding: 12px 24px;
  background: #fff;
  color: var(--color-1);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.news-sidebar__newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.news-sidebar__newsletter-btn i {
  font-size: 18px;
}


.noi_dung_in {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
}

.noi_dung_in h1 {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin: 32px 0 16px 0;
  line-height: 1.3;
}

.noi_dung_in h1:first-child {
  margin-top: 0;
}

.noi_dung_in h1:last-child {
  margin-bottom: 0;
}

.noi_dung_in h2 {
  font-size: 25px;
  font-weight: 700;
  color: #111827;
  margin: 25px 0 10px 0;
  line-height: 1.3;
}

.noi_dung_in h2:first-child {
  margin-top: 0;
}

.noi_dung_in h2:last-child {
  margin-bottom: 0;
}

.noi_dung_in h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin: 24px 0 12px 0;
  line-height: 1.4;
}

.noi_dung_in h3:first-child {
  margin-top: 0;
}

.noi_dung_in h3:last-child {
  margin-bottom: 0;
}

.noi_dung_in h4 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 20px 0 10px 0;
  line-height: 1.4;
}

.noi_dung_in h4:first-child {
  margin-top: 0;
}

.noi_dung_in h4:last-child {
  margin-bottom: 0;
}

.noi_dung_in h5 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 18px 0 8px 0;
  line-height: 1.4;
}

.noi_dung_in h5:first-child {
  margin-top: 0;
}

.noi_dung_in h5:last-child {
  margin-bottom: 0;
}

.noi_dung_in h6 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 16px 0 8px 0;
  line-height: 1.4;
}

.noi_dung_in h6:first-child {
  margin-top: 0;
}

.noi_dung_in h6:last-child {
  margin-bottom: 0;
}

.noi_dung_in p {
  margin: 0 0 16px 0;
}

.noi_dung_in p:last-child {
  margin-bottom: 0;
}

.noi_dung_in ul,
.noi_dung_in ol {
  margin: 16px 0;
  padding-left: 20px;
}

.noi_dung_in ul li,
.noi_dung_in ol li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.noi_dung_in ul li:last-child,
.noi_dung_in ol li:last-child {
  margin-bottom: 0;
}

.noi_dung_in ul li ul,
.noi_dung_in ul li ol,
.noi_dung_in ol li ul,
.noi_dung_in ol li ol {
  margin: 8px 0;
}

.noi_dung_in ul li {
  list-style: disc;
}

.noi_dung_in ol li {
  list-style: decimal;
}

.noi_dung_in dl {
  margin: 16px 0;
}

.noi_dung_in dt {
  font-weight: 700;
  color: #111827;
  margin-top: 16px;
  margin-bottom: 4px;
}

.noi_dung_in dt:first-child {
  margin-top: 0;
}

.noi_dung_in dd {
  margin: 0 0 16px 24px;
  padding-left: 16px;
  border-left: 3px solid #e5e7eb;
}

.noi_dung_in strong,
.noi_dung_in b {
  font-weight: 700;
  color: #111827;
}

.noi_dung_in em,
.noi_dung_in i {
  font-style: italic;
}

.noi_dung_in u {
  text-decoration: underline;
}

.noi_dung_in s,
.noi_dung_in strike {
  text-decoration: line-through;
}

.noi_dung_in mark {
  background: rgba(230, 160, 4, 0.2);
  padding: 2px 4px;
  border-radius: 3px;
}

.noi_dung_in a {
  color: var(--color-1);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.noi_dung_in a:hover {
  color: #d97706;
  border-bottom-color: #d97706;
}

.noi_dung_in blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  background: rgba(230, 160, 4, 0.05);
  border-left: 4px solid var(--color-1);
  border-radius: 8px;
  font-style: italic;
  color: #374151;
}

.noi_dung_in blockquote p {
  margin: 0 0 12px 0;
}

.noi_dung_in blockquote p:last-child {
  margin-bottom: 0;
}

.noi_dung_in blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-style: normal;
  color: #6b7280;
}

.noi_dung_in blockquote cite::before {
  content: "— ";
}

.noi_dung_in pre {
  margin: 20px 0;
  padding: 20px;
  background: #1f2937;
  color: #f9fafb;
  border-radius: 8px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.6;
  font-family: "Courier New", Courier, monospace;
}

.noi_dung_in pre code {
  background: transparent;
  padding: 0;
  border-radius: 0;
  color: inherit;
}

.noi_dung_in code {
  padding: 3px 6px;
  background: rgba(230, 160, 4, 0.1);
  color: #d97706;
  border-radius: 4px;
  font-size: 14px;
  font-family: "Courier New", Courier, monospace;
}

.noi_dung_in img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 24px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.noi_dung_in figure {
  margin: 24px 0;
  text-align: center;
}

.noi_dung_in figure img {
  margin: 0 auto;
}

.noi_dung_in figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: #6b7280;
  font-style: italic;
}

.noi_dung_in table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.noi_dung_in thead {
  background: var(--bg-linear);
  color: #fff;
}

.noi_dung_in tbody {
  background: #fff;
}

.noi_dung_in tr {
  border-bottom: 1px solid #e5e7eb;
}

.noi_dung_in tr:last-child {
  border-bottom: none;
}

.noi_dung_in tr:nth-child(even) {
  background: #f9fafb;
}

.noi_dung_in th,
.noi_dung_in td {
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
}

.noi_dung_in th {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.noi_dung_in td {
  font-size: 15px;
  line-height: 1.6;
}

.noi_dung_in hr {
  margin: 32px 0;
  border: none;
  border-top: 2px solid #e5e7eb;
}

.noi_dung_in address {
  font-style: normal;
  margin: 16px 0;
  padding: 16px;
  background: #f9fafb;
  border-left: 4px solid var(--color-1);
  border-radius: 8px;
}

.noi_dung_in sub,
.noi_dung_in sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

.noi_dung_in sup {
  top: -0.5em;
}

.noi_dung_in sub {
  bottom: -0.25em;
}

.noi_dung_in abbr {
  text-decoration: underline dotted;
  cursor: help;
}

.noi_dung_in small {
  font-size: 85%;
  color: #6b7280;
}

.noi_dung_in .divider {
  margin: 24px 0;
  height: 1px;
  background: #e5e7eb;
}

.noi_dung_in .text-left {
  text-align: left;
}

.noi_dung_in .text-center {
  text-align: center;
}

.noi_dung_in .text-right {
  text-align: right;
}

.noi_dung_in .text-justify {
  text-align: justify;
}

@media (max-width: 768px) {
  .noi_dung_in h1 {
    font-size: 26px;
  }

  .noi_dung_in h2 {
    font-size: 22px;
  }

  .noi_dung_in h3 {
    font-size: 20px;
  }

  .noi_dung_in h4 {
    font-size: 18px;
  }

  .noi_dung_in table {
    font-size: 14px;
  }

  .noi_dung_in th,
  .noi_dung_in td {
    padding: 8px 12px;
  }

  .noi_dung_in blockquote {
    padding: 16px 20px;
  }

  .noi_dung_in pre {
    padding: 16px;
    font-size: 13px;
  }
}

/*# sourceMappingURL=maps/module.css.map */


/* Standard Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.pagination li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: #fff;
}
.pagination a {
  cursor: pointer;
}
.pagination a:hover {
  background: rgba(230, 160, 4, 0.1);
  border-color: var(--color-1);
  color: var(--color-1);
  transform: translateY(-2px);
}
.pagination .active span {
  background: var(--bg-linear);
  border-color: var(--color-1);
  color: #fff;
  box-shadow: 0 2px 8px rgba(230, 160, 4, 0.3);
}
.pagination .disabled span {
  background: #f9fafb;
  border-color: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.6;
}
@media (max-width: 576px) {
  .pagination {
    gap: 6px;
  }
  .pagination a,
  .pagination span {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 13px;
  }
}
