.vm-news-hero {
  position: relative;
  min-height: 640px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.vm-news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 48, 96, 0.8) 5%, rgba(0, 48, 96, 0) 100%);
  z-index: 1;
}
.vm-news-hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  align-self: end;
  padding: 30px 0;
}
.vm-news-hero__title {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .vm-news-hero__title {
    font-size: 28px;
  }
}
@media (max-width: 640px) {
  .vm-news-hero__title {
    font-size: 20px;
  }
}

.vm-breadcrumb {
  font-size: 16px;
  font-weight: 500;
}
.vm-breadcrumb__list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
}
.vm-breadcrumb__item {
  display: flex;
  align-items: center;
}
.vm-breadcrumb__item::after {
  background-image: url("../images/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  content: "";
}
.vm-breadcrumb__item:last-child::after {
  display: none;
}
.vm-breadcrumb__item--active {
  color: #fff;
}
.vm-breadcrumb__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
  margin-right: 8px;
}
.vm-breadcrumb__link:hover {
  color: #EB0738;
}

.vm-news-main {
  padding: 60px 0;
}
@media (max-width: 900px) {
  .vm-news-main {
    padding: 40px 0;
  }
}
@media (max-width: 640px) {
  .vm-news-main {
    padding: 20px 0;
  }
}

@media (max-width: 900px) {
  .vm-news-section {
    margin-bottom: 40px;
  }
}
.vm-news-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
  flex-wrap: nowrap;
}
@media (max-width: 640px) {
  .vm-news-section__header {
    margin-bottom: 20px;
  }
}
.vm-news-section .section-subtitle {
  display: flex;
  align-items: center;
  gap: 16px;
}
.vm-news-section .section-subtitle h3 {
  display: block;
  padding: 12px 36px 12px 12px;
  background: #f3f6ff;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #073459;
  border-left: 2px solid #eb0738;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 50%, calc(100% - 25px) 100%, 0 100%);
}
.vm-news-section__view-all {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #EB0738;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.vm-news-section__view-all:hover {
  font-weight: 600;
  transform: translateX(4px);
}

.vm-news-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
@media (max-width: 900px) {
  .vm-news-grid {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}
@media (max-width: 640px) {
  .vm-news-grid {
    gap: 16px;
    grid-template-columns: 1fr;
  }
}
.vm-news-grid--featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.vm-news-grid--category {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .vm-news-grid--category {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .vm-news-grid--category {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .vm-news-grid--category {
    grid-template-columns: 1fr;
  }
}

.vm-news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: none;
  transition: all 0.3s ease;
  gap: 24px;
}
.vm-news-card:hover {
  transform: translateY(-4px);
}
.vm-news-card:hover .vm-news-card__link {
  color: #EB0738;
}
.vm-news-card__image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.vm-news-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.vm-news-card:hover .vm-news-card__image {
  transform: scale(1.05);
}
.vm-news-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 640px) {
  .vm-news-card__content {
    padding: 16px;
  }
}
.vm-news-card__title {
  font-size: 18px;
  font-weight: 600;
  color: #10253c;
  margin: 0;
  line-height: 1.4;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vm-news-card__link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.vm-news-card__link:hover {
  color: #EB0738;
}
.vm-news-card__description {
  font-size: 16px;
  color: #141414;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vm-news-card__footer {
  display: flex;
  gap: 16px;
  align-items: center;
}
.vm-news-card__date {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.vm-news-card__date span {
  display: block;
  line-height: normal;
  color: rgba(27, 31, 38, 0.72);
}
@media (max-width: 640px) {
  .vm-news-card__date {
    font-size: 11px;
  }
}
.vm-news-card__read-more {
  font-size: 12px;
  font-weight: 600;
  color: #EB0738;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.vm-news-card__read-more:hover {
  color: #c90531;
  transform: translateX(4px);
}
@media (max-width: 640px) {
  .vm-news-card__read-more {
    font-size: 11px;
  }
}
.vm-news-card--category .vm-news-card__category {
  display: none;
}
.vm-news-card--category .vm-news-card__read-more {
  display: none;
}

.vm-news-categories .vm-news-category-section:not(:last-child) {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e5e5;
}

.vm-news-featured {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ededed;
}
@media (max-width: 900px) {
  .vm-news-featured {
    margin-bottom: 60px;
    padding-bottom: 40px;
  }
}
@media (max-width: 640px) {
  .vm-news-featured {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }
}
.vm-news-featured .vm-news-section__title {
  color: #EB0738;
}
.vm-news-featured__tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 640px) {
  .vm-news-featured__tabs {
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
}
.vm-news-featured__tab {
  display: inline-block;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 500;
  color: #001f3d;
  text-decoration: none;
  background: #f2f5f9;
  border: none;
  border-radius: 36px;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.vm-news-featured__tab:hover, .vm-news-featured__tab.active {
  color: #fff;
  background-color: #EB0738;
}
@media (max-width: 640px) {
  .vm-news-featured__tab {
    padding: 6px 16px;
    font-size: 12px;
  }
}
.vm-news-featured__side {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
  justify-content: space-between;
}
@media (max-width: 640px) {
  .vm-news-featured__side {
    gap: 16px;
  }
}
.vm-news-featured__category-text {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: #EB0738;
}

.vm-news-card--featured-main {
  height: 100%;
}
.vm-news-card--featured-main .vm-news-card__image-wrapper--large {
  height: 350px;
  border-radius: 24px;
}
.vm-news-card--featured-main .vm-news-card__title--large {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 900px) {
  .vm-news-card--featured-main .vm-news-card__title--large {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .vm-news-card--featured-main .vm-news-card__title--large {
    font-size: 16px;
  }
}
.vm-news-card--featured-main .vm-news-card__description--large {
  font-size: 16px;
  color: #141414;
  margin-bottom: 0px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vm-news-card--featured-main .vm-news-card__description--large p {
  margin-bottom: 0;
}
.vm-news-card--featured-main .vm-news-card__footer--large {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  border: none;
  padding-top: 0;
  margin-top: auto;
}

.vm-news-card--featured-side {
  display: flex;
  flex-direction: row;
  gap: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.vm-news-card--featured-side:hover {
  transform: translateY(-2px);
}
.vm-news-card--featured-side .vm-news-card__image-wrapper--side {
  width: 270px;
  height: 152px;
  border-radius: 24px;
  overflow: hidden;
}
.vm-news-card--featured-side .vm-news-card__image-wrapper--side img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.vm-news-card--featured-side .vm-news-card__image {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.vm-news-card--featured-side:hover .vm-news-card--featured-side .vm-news-card__image {
  transform: scale(1.05);
}
.vm-news-card--featured-side .vm-news-card__content--side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: -moz-fit-content;
  height: fit-content;
}
.vm-news-card--featured-side .vm-news-card__title--side {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin: 0;
  line-height: 1.4;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 640px) {
  .vm-news-card--featured-side .vm-news-card__title--side {
    font-size: 12px;
  }
}
.vm-news-card--featured-side .vm-news-card__footer--side {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  border: none;
  padding-top: 0;
  margin-top: auto;
}
.vm-news-card--featured-side .vm-news-card__date {
  font-size: 15px;
  color: rgba(27, 31, 38, 0.72);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.vm-news-card {
  animation: fadeIn 0.5s ease;
}

.vm-news-section {
  animation: fadeIn 0.6s ease;
}

.image-wrapper--category {
  width: 100%;
  height: 225px;
  border-radius: 24px;
  overflow: hidden;
}

.vm-news-category {
  padding-bottom: 0;
}

.vm-news-category-filter {
  margin-bottom: 40px;
  border-bottom: 1px solid #ededed;
}
@media (max-width: 900px) {
  .vm-news-category-filter {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
}
@media (max-width: 640px) {
  .vm-news-category-filter {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
}

.vm-news-category-list {
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .vm-news-category-list {
    margin-bottom: 30px;
  }
}
@media (max-width: 640px) {
  .vm-news-category-list {
    margin-bottom: 20px;
  }
}

.vm-news-pagination {
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
  border-bottom: 1px solid #ededed;
}
@media (max-width: 900px) {
  .vm-news-pagination {
    margin-top: 40px;
    padding-top: 30px;
  }
}
@media (max-width: 640px) {
  .vm-news-pagination {
    margin-top: 30px;
    padding-top: 20px;
  }
}

.vm-pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 16px;
  flex-wrap: nowrap;
}
@media (max-width: 640px) {
  .vm-pagination__list {
    gap: 4px;
  }
}
.vm-pagination__item--current span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eb0738;
  color: #fff;
  border-radius: 50%;
  font-weight: 500;
  width: 48px;
  height: 48px;
}
.vm-pagination__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 500;
  width: 48px;
  height: 48px;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-weight: 500;
  text-align: center;
}
.vm-pagination__item a:hover {
  background-color: #eb0738;
  color: #fff;
}
.vm-pagination__item a:hover svg path {
  stroke: #fff;
}
@media (max-width: 640px) {
  .vm-pagination__item a {
    padding: 6px 10px;
    font-size: 12px;
  }
}

.vm-news-empty {
  padding: 60px 20px;
  text-align: center;
}
.vm-news-empty p {
  font-size: 16px;
  color: #10253c;
  margin: 0;
}
@media (max-width: 900px) {
  .vm-news-empty {
    padding: 40px 20px;
  }
}
@media (max-width: 640px) {
  .vm-news-empty {
    padding: 30px 20px;
  }
}

.vm-news-detail-wrapper {
  display: grid;
  grid-template-columns: 2.3fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .vm-news-detail-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
}
@media (max-width: 900px) {
  .vm-news-detail-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
}

.vm-news-detail-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 640px) {
  .vm-news-detail-content {
    gap: 20px;
  }
}

.vm-news-detail-title {
  color: #001f3d;
  font-size: 26px;
  font-weight: 700;
  margin: 0;
}

.vm-news-detail-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vm-news-detail-meta__info {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: #999;
}
.vm-news-detail-meta .share {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vm-news-detail-meta .share span {
  color: #141414;
  font-size: 15px;
  font-weight: 500;
}
.vm-news-detail-meta__category {
  display: inline-block;
}
.vm-news-detail-meta__category-link {
  font-size: 16px;
  color: #EB0738;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}
.vm-news-detail-meta__category-link:hover {
  opacity: 0.8;
}
.vm-news-detail-meta__date {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1b1f26;
  opacity: 0.72;
}
.vm-news-detail-meta__date svg {
  flex-shrink: 0;
}
.vm-news-detail-meta__date span {
  font-size: 14px;
}

.vm-news-detail-body {
  font-size: 16px;
  line-height: 1.8;
  color: #1b1f26;
}
.vm-news-detail-body h1,
.vm-news-detail-body h2,
.vm-news-detail-body h3,
.vm-news-detail-body h4,
.vm-news-detail-body h5,
.vm-news-detail-body h6 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #141414;
  font-weight: 600;
  font-size: 16px;
}
.vm-news-detail-body p {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 16px;
}
.vm-news-detail-body p:last-child {
  margin-bottom: 0;
}
.vm-news-detail-body p img {
  margin: auto;
  max-width: 100% !important;
  height: auto !important;
  width: 100%;
}
.vm-news-detail-body ul,
.vm-news-detail-body ol {
  margin: 16px 0 16px 24px;
  padding: 0;
}
.vm-news-detail-body ul li,
.vm-news-detail-body ol li {
  margin-bottom: 12px;
}
.vm-news-detail-body img {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
  border-radius: 12px;
}
.vm-news-detail-body a {
  color: #EB0738;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.vm-news-detail-body a:hover {
  opacity: 0.8;
}
.vm-news-detail-body blockquote {
  padding: 20px 24px;
  margin: 24px 0;
  background-color: #f2f5f9;
  border-left: 4px solid #EB0738;
  font-style: italic;
  color: #999;
}
.vm-news-detail-body table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
}
.vm-news-detail-body table th,
.vm-news-detail-body table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ededed;
}
.vm-news-detail-body table th {
  background-color: #f2f5f9;
  font-weight: 600;
  color: #10253c;
}
@media (max-width: 640px) {
  .vm-news-detail-body {
    font-size: 15px;
    line-height: 1.7;
  }
  .vm-news-detail-body h2 {
    font-size: 20px;
  }
  .vm-news-detail-body h3 {
    font-size: 18px;
  }
}

.vm-news-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.vm-news-detail-sidebar .vm-news-widget--latest {
  position: sticky;
  top: 100px;
}
@media (max-width: 900px) {
  .vm-news-detail-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .vm-news-detail-sidebar {
    display: flex;
  }
}

.vm-share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #475467;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}
.vm-share-btn svg {
  transition: transform 0.2s ease;
}
.vm-share-btn:hover {
  color: #1b1f26;
}
.vm-share-btn:hover svg {
  transform: scale(1.1);
}

.vm-share-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.vm-share-overlay.active {
  display: block;
  opacity: 1;
}

.vm-share-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.16);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 420px;
  width: 90%;
  animation: modalSlideIn 0.3s ease forwards;
}
@media (max-width: 640px) {
  .vm-share-modal {
    max-width: 85%;
    width: 100%;
  }
}
.vm-share-modal.active {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.vm-share-modal__content {
  padding: 16px 12px;
  position: relative;
}
.vm-share-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.vm-share-modal__title {
  font-size: 18px;
  font-weight: 600;
  color: #3b3b3b;
  margin: 0;
  line-height: 1.4;
  flex: 1;
}
.vm-share-modal__close {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 0;
  flex-shrink: 0;
}
.vm-share-modal__close:hover {
  color: #1b1f26;
}
.vm-share-modal__link-section {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  align-items: center;
}
.vm-share-modal__link-input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #f9fafb;
  color: #475467;
  font-size: 13px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.2s ease;
}
.vm-share-modal__link-input:focus {
  outline: none;
  border-color: #d1d5db;
  background: #fff;
}
.vm-share-modal__copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border: none;
  border-radius: 6px;
  background: #fff;
  color: #073459;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.vm-share-modal__copy-btn:active {
  transform: scale(0.95);
}
.vm-share-modal__copy-btn.copied {
  color: #10b981;
  border-color: #10b981;
  background: #f0fdf4;
}
.vm-share-modal__social-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.vm-share-modal__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 8px;
  background: none;
  color: #1b1f26;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.vm-share-modal__social-btn svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.vm-share-modal__social-btn span {
  display: block;
}
.vm-share-modal__social-btn:hover {
  transform: translateY(-2px);
}
.vm-share-modal__social-btn:active {
  transform: translateY(0px);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
.vm-news-widget .widget-top {
  position: relative;
  background: #eb0738;
  margin-bottom: 20px;
  border-radius: 30px 8px 30px 8px;
}
.vm-news-widget .widget-top .bgr-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}
.vm-news-widget__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  padding: 16px 20px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.vm-news-widget__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.vm-news-widget__item {
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
  padding-bottom: 20px;
  border-bottom: solid 1px #eeeeee;
}
.vm-news-widget__item:hover {
  transform: translateX(4px);
}
.vm-news-widget__item:hover .vm-news-widget__item-title a {
  color: #EB0738;
}
.vm-news-widget__image-wrapper {
  flex-shrink: 0;
  width: 160px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
}
.vm-news-widget__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.vm-news-widget__item:hover .vm-news-widget__image {
  transform: scale(1.05);
}
.vm-news-widget__item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vm-news-widget__item-title {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #222222;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vm-news-widget__item-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.vm-news-widget__item-link:hover {
  color: #EB0738;
}
.vm-news-widget__item-date {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(27, 31, 38, 0.72);
  margin: 0;
}
.vm-news-widget__item-date svg {
  flex-shrink: 0;
}
.vm-news-widget__item-date span {
  font-size: 15px;
}

.vm-news-related {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #ededed;
}
@media (max-width: 900px) {
  .vm-news-related {
    margin-top: 40px;
    padding-top: 30px;
  }
}
@media (max-width: 640px) {
  .vm-news-related {
    margin-top: 30px;
    padding-top: 20px;
  }
}
.vm-news-related .vm-news-section__title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.vm-news-grid--related {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .vm-news-grid--related {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .vm-news-grid--related {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .vm-news-grid--related {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}/*# sourceMappingURL=news.css.map */