:root {
  --length-48: clamp(24px, calc(2.4vw + 12px), 48px);
  --length-32: clamp(16px, calc(1.6vw + 8px), 32px);
  --length-25: clamp(12.5px, calc(1.25vw + 6.25px), 25px);
  --length-24: clamp(12px, calc(1.2vw + 6px), 24px);
  --length-20: clamp(10px, calc(1vw + 5px), 20px);
  --length-16: clamp(8px, calc(0.8vw + 4px), 16px);
  --length-12: clamp(6px, calc(0.6vw + 3px), 12px);
  --length-8: clamp(4px, calc(0.4vw + 2px), 8px);
}

.runda-news-read {
  padding-bottom: var(--text-gap-lg);
  background: #F9F9F9;
}

.runda-news-read-gototop {
  position: fixed;
  right: 20px;
  top: 50%;
  box-shadow: 0 4px 4px 0 #EEE;
  padding: 10px;
  border-radius: 50%;
  background: #FFF;
  cursor: pointer;
  z-index: 1000;
  display: none;
}

.runda-news-read-breadcrumb {
  padding-top: var(--text-gap-sm);
  padding-bottom: var(--text-gap-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}

.runda-news-read-breadcrumb a {
  color: var(--color-primary);
  font-family: var(--font-family);
  font-size: var(--text-size);
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

.runda-news-read-breadcrumb a:first-child:hover {
  color: var(--color-second);
  text-decoration: underline;
}

.runda-news-read-breadcrumb svg {
  width: 4.916px;
  height: 8.381px;
}

.runda-news-read-breadcrumb span {
  color: #333;
  font-family: var(--font-family);
  font-size: var(--text-size);
  font-weight: 400;
  line-height: normal;
}

.runda-news-read-wrapper {
  display: flex;
  gap: var(--text-gap);
}

.runda-news-read-left {
  flex: 1;
  padding: var(--text-gap-lg) 20px;
  background: #FFF;
  border-radius: 8px;
}

.runda-news-read-right {
  width: 300px;
  flex-shrink: 0;
}

.runda-news-read-title {
  color: #333;
  font-size: var(--title-size-h2);
  font-weight: 400;
  line-height: normal;
}

.runda-news-read-info {
  margin-top: var(--length-24);
  display: flex;
  align-items: center;
  gap: var(--length-24);
}

.runda-news-read-info .info-item {
  display: flex;
  align-items: center;
  gap: var(--length-8);
}

.runda-news-read-info .info-item span {
  color: #666;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.runda-news-read-info .medias {
  gap: var(--length-24);
}

.runda-news-read-info .medias a {
  width: 24px;
  height: 24px;
}

.runda-news-read-info .medias a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.runda-news-read-content {
  margin-top: var(--length-48);
}

.runda-news-read-pagination {
  margin-top: var(--length-48);
}

.runda-news-read-pagination .p-link {
  display: flex;
  align-items: center;
  background: #F8F8F8;
  padding: 10px 8px;
  cursor: pointer;
}

.runda-news-read-pagination .p-link .svg-box {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--length-8);
}

.runda-news-read-pagination .p-link .page {
  width: 114px;
  flex-shrink: 0;
}

.runda-news-read-pagination .p-link span {
  color: #000;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}

.runda-news-read-pagination .p-link .line {
  width: 1px;
  height: 29px;
  background: #EEE;
  margin: 0 var(--length-16);
}

.runda-news-read-pagination .p-link:first-child {
  margin-bottom: var(--length-24);
}

.runda-news-read-catalogue,
.runda-news-read-news {
  background: #FFF;
  padding: var(--length-20);
  border-radius: 8px;
}

.runda-news-read-catalogue-header,
.runda-news-read-news-header {
  display: flex;
  align-items: center;
  gap: var(--length-8);
}

.runda-news-read-catalogue-header h3,
.runda-news-read-news-header h3 {
  color: #000;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.runda-news-read-catalogue-header svg,
.runda-news-read-news-header svg {
  width: 24px;
  height: 24px;
}

.runda-news-read-catalogue-list,
.runda-news-read-news-list {
  margin-top: 4px;
}

.runda-news-read-catalogue-list li,
.runda-news-read-news-list li {
  padding: 16px 0;
  border-bottom: 1px solid #E2E2E2;
}

.runda-news-read-catalogue-list li a,
.runda-news-read-news-list li a h4 {
  color: #333;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.runda-news-read-news,
.runda-news-read-form {
  margin-top: var(--length-20);
}

.runda-news-read-news-list li a img {
  width: 100%;
  height: auto;
  margin-bottom: var(--length-12);
}

.runda-news-read-news-list li a p {
  color: rgba(0, 0, 0, 0.60);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 20.8px;
  margin-top: var(--length-12);
}

.runda-news-read-form {
  border-radius: 8px;
  background: #F8F3ED;
  padding: var(--length-32) var(--length-25);
  text-align: center;
}

.runda-news-read-form h3 {
  color: #000;
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
}

.runda-news-read-form p {
  color: #333;
  font-family: var(--font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-top: var(--length-8);
}

.runda-news-read-form .invite-form-wrap {
  margin-top: var(--length-20);
}

.runda-news-read-form .invite-form-wrap .subscribe-from {
  position: relative;
}

.runda-news-read-form .invite-form-wrap .subscribe-from .crmFormVali-error {
  top: auto;
  left: 21px;
  right: auto;
  bottom: auto;
  margin-bottom: var(--length-8);
}

.runda-news-read-form .invite-form-wrap .subscribe-from input {
  display: block;
  width: 100%;
  padding: 8px 20px;
  border: 1px solid #E2E2E2;
  background: #FFF;
  color: #333;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 20.8px;
}

.runda-news-read-form .invite-form-wrap .subscribe-from input::placeholder {
  color: rgba(0, 0, 0, 0.30);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 20.8px;
}

.runda-news-read-form .invite-form-wrap .subscribe-from button {
  margin-top: var(--length-20);
  display: block;
  width: 100%;
  padding: 10px 0;
  background: var(--color-primary);
  color: #FFF;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.runda-news-read-form .invite-form-wrap .subscribe-from button:hover {
  background: var(--color-second);
}

/* .runda-news-read-right .affix{
  position: fixed;
  top: 90px;
  width: 300px;
  z-index: 1000;
} */

@media screen and (max-width: 992px) {
  .runda-news-read-wrapper {
    flex-direction: column;
  }

  .runda-news-read-left {
    width: 100%;
  }

  .runda-news-read-right {
    width: 100%;
  }

  .runda-news-read-catalogue {
    display: none;
  }

  .runda-news-read-news {
    margin-top: 0;
  }
}

@media screen and (max-width: 576px) {
  .runda-news-read-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .runda-news-read-pagination .p-link {
    flex-direction: column;
    align-items: flex-start;
  }

  .runda-news-read-pagination .p-link .page {
    width: 100%;
  }

  .runda-news-read-pagination .p-link .svg-box {
    display: none;
  }

  .runda-news-read-pagination .p-link .line {
    width: 100%;
    height: 1px;
    background: #EEE;
    margin: var(--length-16) 0;
  }
}