:root {
  --primary-color: #2E7D32;
  --link-color: #2E7D32;
  --link-hover-color: #1B5E20;
  --red: #d10a10;
  --white: #ffffff;
  --box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
  --button-hover: #1B5E20;
}

#un-content {
  margin-bottom: 10px;
  background-color: #fff;
}

@media screen and (min-width: 600px) {
  #un-content {
    margin-right: 5px;
    margin-left: 5px;
  }
}

.un-header {
  padding: 20px 15px;
  position: relative;
}

@media screen and (min-width: 600px) {
  .un-header {
    padding: 20px 30px;
  }
}

@media screen and (min-width: 768px) {
  .un-header {
    padding: 20px 15px;
  }
}

@media screen and (min-width: 906px) {
  .un-header {
    padding: 20px 30px;
  }
}

.un-header__title {
  font-size: 40px;
  line-height: 44px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

@media screen and (max-width: 429px) {
  .un-header__title {
    font-size: 26px;
    line-height: 30px;
  }
}

.un-header__image {
  position: relative;
  background-color: #efe8e1;
  overflow: hidden;
  margin-bottom: 20px;
}

.un-header-image__img {
  display: block;
  width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}

.advertorial-disclosure {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background-color: #f6f6f6;
  border-bottom: 1px solid #e0e0e0;
  margin: 0;
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

@media screen and (min-width: 600px) {
  .advertorial-disclosure {
    padding: 10px 30px;
  }
}

@media screen and (min-width: 768px) {
  .advertorial-disclosure {
    padding: 10px 15px;
  }
}

@media screen and (min-width: 906px) {
  .advertorial-disclosure {
    padding: 10px 30px;
  }
}

@media screen and (max-width: 767px) {
  .advertorial-disclosure {
    padding: 10px 15px;
    margin-top: 0;
  }
}

.advertorial-disclosure__label {
  display: inline-block;
  padding: 4px 10px;
  background-color: #2E7D32;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 3px;
  flex-shrink: 0;
}

.advertorial-disclosure__text {
  flex: 1;
  font-size: 13px;
  color: #666;
}

.un-header__info {
  margin: 15px;
  color: #b4b4b4;
  font-size: 1em;
}

@media screen and (min-width: 600px) {
  .un-header__info {
    margin: 15px 30px;
  }
}

.un-header__author {
  font-weight: 700;
}

.sharing {
  padding: 15px;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  margin: 20px 0;
}

.sharing__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 15px;
}

.sharing__button {
  padding: 8px 15px;
  background-color: #f5f5f5;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  border: none;
}

.sharing__button:hover {
  background-color: #e0e0e0;
}

.un-article {
  padding-top: 20px;
  padding-bottom: 10px;
}

.un-article__paragraph {
  overflow-wrap: break-word;
  margin-top: 0;
  font-size: 18px;
  line-height: 26px;
  width: 100%;
  max-width: 100vw;
  margin-bottom: 25px;
  clear: both;
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
}

.un-article__paragraph b,
.un-article__paragraph strong,
.un-article__paragraph b *,
.un-article__paragraph strong * {
  font-weight: 700 !important;
}

@media screen and (min-width: 600px) {
  .un-article__paragraph {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media screen and (min-width: 768px) {
  .un-article__paragraph {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media screen and (min-width: 906px) {
  .un-article__paragraph {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.un-article__headline2 {
  position: relative;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
  max-width: 100vw;
  clear: both;
}

@media screen and (min-width: 600px) {
  .un-article__headline2 {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.un-article__callout {
  border-left: solid 4px var(--primary-color);
  padding-left: 15px;
  margin-right: 15px;
  margin-left: 15px;
  font-style: italic;
  background-color: #f9f9f9;
  padding: 15px;
}

@media screen and (min-width: 600px) {
  .un-article__callout {
    margin-right: 30px;
    margin-left: 30px;
  }
}

.un-article__image {
  position: relative;
  background-color: #efe8e1;
  overflow: hidden;
  margin-bottom: 25px;
}

.un-article-image__img {
  display: block;
  width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}

.un-article__link {
  text-decoration: underline;
  color: var(--link-color);
  font-weight: 600;
}

.un-article__link:hover {
  text-decoration: underline;
  color: var(--link-hover-color);
}

.cta-button {
  background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
  display: block;
  text-align: center;
  color: var(--white) !important;
  padding: 18px 40px;
  margin: 30px auto;
  width: 80%;
  max-width: 450px;
  border-radius: 8px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  color: var(--white) !important;
  box-shadow: 0 6px 16px rgba(46, 125, 50, 0.4);
  transform: translateY(-2px);
}

.comments {
  padding: 20px 15px;
  margin-top: 40px;
  border-top: 2px solid #e0e0e0;
}

.comments__header-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.comments__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comments__list-item {
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.comments__list-item:last-child {
  border-bottom: none;
}

.comments__list-item__head {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.comment-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.comments__list-item__author {
  font-size: 16px;
  font-weight: 700;
  margin: 0 10px 0 0;
}

.comments__list-item__meta {
  font-size: 12px;
  color: #999;
  margin-left: auto;
}

.comments__list-item__body {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.case-study {
  margin: 40px 0;
  padding: 25px;
  background-color: #f9f9f9;
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  overflow: hidden;
}

@media screen and (min-width: 600px) {
  .case-study {
    padding: 30px;
  }
}

.case-study__content {
  margin-bottom: 20px;
}

.case-study__name {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #1a1a1a;
}

.case-study__results {
  font-size: 18px;
  color: var(--primary-color);
  margin: 0 0 15px 0;
  padding: 0;
}

.case-study__image {
  position: relative;
  background-color: #efe8e1;
  overflow: hidden;
  margin: 20px 0 0 0;
  border-radius: 6px;
}

.case-study__image .un-article-image__img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

.case-study__caption {
  padding: 10px 15px;
  background-color: #fff;
  color: #666;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
  text-align: center;
}

