* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans", sans-serif;
  color: #343434;
  line-height: 1.6;
  background-color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1 {
  font-size: clamp(32px, 4vw, 46px);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: clamp(18px, 2vw, 24px);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}

p {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
}

.lead {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.5;
  font-weight: 700;
}

.caption {
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.5;
  font-style: italic;
}

.text-red {
  color: #cf0000;
}

.text-orange {
  color: #fe8615;
}

.text-green-large {
  color: #00af12;
  font-size: clamp(26px, 2.5vw, 32px);
  font-weight: 700;
}

.highlight-green {
  background-color: #00af12;
  color: #ffff7f;
  padding: 4px;
  font-weight: 700;
}

.header {
  width: 100%;
  position: relative;
}

.header__notification {
  background-color: #a4ca57;
  width: 100%;
  padding: 8px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__notification-container {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 16px;
}

.header__notification-text p {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  color: #343434;
  margin: 0;
}
.header__notification-text strong {
  font-weight: 700;
}

.header__notification-highlight {
  background-color: #ffff7f;
  padding: 4px;
}
.header__notification-highlight p {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  font-weight: 600;
  text-transform: uppercase;
  color: #343434;
  margin: 0;
}

.header__brand {
  background-color: #ffffff;
  height: 169px;
  position: relative;
  overflow: hidden;
}

.header__brand-container {
  max-width: 1085px;
  margin: 0 auto;
  padding: 0 clamp(40px, 8vw, 120px);
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.header__brand-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 37%;
  z-index: 1;
  background: linear-gradient(90deg, #fff 0.01%, rgba(255, 255, 255, 0) 14.43%), url("../img/5f9054d12c00471f10a719db023618c3af54c7aa.png") lightgray 50%/cover no-repeat;
}

.header__logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__logo-sygnet {
  position: relative;
  width: 112px;
  height: 106px;
}
.header__logo-sygnet .header__logo-layer2,
.header__logo-sygnet .header__logo-layer3 {
  position: absolute;
}
.header__logo-sygnet .header__logo-layer2 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.header__logo-sygnet .header__logo-layer3 {
  width: 48px;
  height: 56px;
  top: 16px;
  left: 9px;
}

.header__logo-typo {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-end;
}

.header__logo-puls {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 60px;
  color: #333c83;
  line-height: 1;
  letter-spacing: -3px;
}

.header__logo-zdrowia {
  font-family: "Times New Roman", serif;
  font-size: 60px;
  color: #a4ca57;
  line-height: 1;
  margin-top: -10px;
}

.header__nav {
  position: relative;
  background-color: #5aa5f1;
  padding: 8px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__nav-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.header__nav-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__nav-items {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 16px;
}

.header__nav-item {
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  transition: opacity 0.3s ease;
}
.header__nav-item:hover {
  opacity: 0.8;
}
.header__nav-item--active {
  background-color: rgba(255, 255, 255, 0.1);
}

.header__nav-separator {
  width: 1.5px;
  height: 20px;
  background-color: white;
  flex-shrink: 0;
}
.header__nav-separator img {
  display: none;
}

.header__utility {
  background-color: #f6dfa4;
  border-bottom: 1px dashed #5aa5f1;
  padding: 9px 19px;
  display: flex;
  justify-content: center;
}

.header__utility-container {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  font-size: clamp(11px, 1vw, 12px);
  line-height: 1.5;
}

.header__utility-date,
.header__utility-nameday {
  margin: 0;
  color: #343434;
}
.header__utility-date strong,
.header__utility-nameday strong {
  font-weight: 700;
}

.header__utility-weather {
  display: flex;
  gap: 2px;
  align-items: center;
}
.header__utility-weather p {
  margin: 0;
  font-size: clamp(11px, 1vw, 12px);
}
.header__utility-weather strong {
  font-weight: 700;
}

.header__utility-temp {
  background-color: #30468a;
  color: #ffffff;
  padding: 4px;
  font-weight: 700;
  font-size: clamp(11px, 1vw, 12px);
}

.header__utility-search {
  display: flex;
  gap: 0;
  align-items: center;
}

.header__utility-search-input {
  width: 195px;
  height: 30px;
  border: 1px solid #8e8e8e;
  background-color: #ffffff;
  padding: 0 8px;
  font-size: 14px;
}

.header__utility-search-button {
  height: 30px;
  padding: 0 16px;
  background: linear-gradient(to bottom, #e5e5e5, #c1c1c1);
  border: 1px solid #8e8e8e;
  color: #343434;
  font-size: 14px;
  cursor: pointer;
  font-family: "Noto Sans", sans-serif;
}
.header__utility-search-button:hover {
  opacity: 0.9;
}

.main {
  width: 100%;
  background-color: #f5f6f4;
}

.page-container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 24px 0;
}

.content-wrapper {
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  background: #fff;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.25);
}
@media (max-width: 600px) {
  .content-wrapper {
    margin: 0 20px;
    width: auto;
  }
}

.article {
  width: 100%;
}

.article__header {
  margin-bottom: 24px;
}

.article__title {
  margin-bottom: 32px;
  padding-top: 24px;
}

.article__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.article__meta-date,
.article__meta-author {
  font-size: clamp(12px, 1.1vw, 14px);
  color: #8e8e8e;
  line-height: 1.5;
  margin: 0;
}

.article__lead {
  font-size: clamp(16px, 1.5vw, 20px);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

.article__content {
  display: flex;
  flex-direction: column;
}

.article__text-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
.article__text-wrap p {
  margin: 0;
}

.article__images-duo {
  position: relative;
  width: 100%;
  height: 579px;
  margin: 24px 0;
}

.article__image-main {
  position: relative;
  width: 773px;
  height: 579px;
}
.article__image-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.article__image-rotated {
  position: absolute;
  top: 23px;
  left: 467px;
  width: 404px;
  height: 538px;
  transform: rotate(5deg);
  border: 5px solid #ffffff;
}
.article__image-rotated img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.article__image-wrapper {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.article__image-wrapper img {
  width: 100%;
  height: auto;
}

.article__caption {
  font-size: clamp(12px, 1.1vw, 14px);
  font-style: italic;
  color: #343434;
  text-align: center;
  padding: 8px 0;
  margin: 0;
  margin-bottom: 10px;
}

.article__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
  margin-bottom: 16px;
}

.article__subtitle {
  margin: 0;
}

.article__two-col {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.article__two-col-image {
  width: 360px;
  flex-shrink: 0;
}
.article__two-col-image img {
  width: 100%;
  height: auto;
}

.article__two-col-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.article__two-col-text p {
  margin: 0;
}

.article__section--benefits .benefits {
  background-color: #fff3e7;
  border: 1px dashed #fe8615;
  padding: 48px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.benefits__image {
  width: 344px;
  flex-shrink: 0;
}
.benefits__image img {
  width: 100%;
  height: auto;
}

.benefits__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits__intro {
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 700;
  line-height: 1.7;
  margin: 0;
}

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

.benefits__item {
  display: flex;
  gap: 8px;
  align-items: center;
}
.benefits__item span {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
}

.benefits__icon {
  width: 24px;
  height: 20px;
  flex-shrink: 0;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.testimonial {
  background-color: #f9fcff;
  border: 1px solid #5aa5f1;
  padding: 24px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}

.testimonial__image {
  width: 188px;
  height: 180px;
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonial__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial__text {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  margin: 0;
}

.testimonial__author {
  font-weight: 700;
  margin: 0;
}

.testimonial__quote {
  width: 45px;
  height: 34px;
  flex-shrink: 0;
}
.testimonial__quote img {
  width: 100%;
  height: 100%;
}

.article__warning-box {
  background-color: #fff3e7;
  padding: 24px;
  margin: 24px 0;
}
.article__warning-box p {
  text-align: center;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  margin: 0;
}
.article__warning-box p:first-child {
  color: #cf0000;
  font-weight: 700;
}

.doctor-quote {
  background-color: #f5f6f4;
  border: 1px solid #8e8e8e;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.doctor-quote__layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.doctor-quote__image {
  width: 313px;
  height: 328px;
  flex-shrink: 0;
}
.doctor-quote__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.doctor-quote__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.doctor-quote__text p {
  margin: 0;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
}

.doctor-quote__footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.doctor-quote__footer p {
  margin: 0;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
}

.doctor-quote__author {
  text-align: right;
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.5;
}
.doctor-quote__author strong {
  font-weight: 700;
}

.article__cta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

.article__cta-box {
  background-color: #fffede;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.article__cta-title {
  font-size: clamp(26px, 2.5vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  line-height: 1.3;
}

.article__cta-subtitle {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  line-height: 1.3;
}

.article__cta-highlight {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  line-height: 1.3;
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.article__cta-link {
  font-size: clamp(22px, 2vw, 27px);
  font-weight: 700;
  color: #0000ff;
  text-decoration: underline;
  padding: 32px 0;
  line-height: 1.4;
  display: block;
}
.article__cta-link:hover {
  opacity: 0.8;
}

.comments__title {
  font-size: clamp(16px, 1.5vw, 20px);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.comments__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.comment {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comment__header {
  display: flex;
  gap: 8px;
  align-items: center;
}

.comment__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.comment__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.comment__avatar--placeholder {
  background-color: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comment__avatar--placeholder img {
  width: 60%;
  height: 60%;
}

.comment__meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.comment__name {
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 700;
  color: #323232;
  line-height: 1.85;
}

.comment__separator {
  font-size: clamp(12px, 1.1vw, 14px);
  color: #323232;
}

.comment__date {
  font-size: clamp(12px, 1.1vw, 14px);
  color: #323232;
  line-height: 1.5;
}

.comment__text {
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.5;
  color: #343434;
  margin: 0;
}

.comments__cta-link {
  font-size: clamp(22px, 2vw, 27px);
  font-weight: 700;
  color: #0000ff;
  text-decoration: underline;
  padding: 32px 0;
  line-height: 1.4;
  display: block;
}
.comments__cta-link:hover {
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .article__images-duo {
    height: auto;
  }
  .article__image-main {
    width: 100%;
    height: auto;
  }
  .article__image-rotated {
    width: 60%;
    height: auto;
    left: 35%;
    top: 5%;
  }
  .article__two-col-image {
    width: 300px;
  }
  .benefits__image {
    width: 280px;
  }
  .doctor-quote__image {
    width: 250px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .header__brand {
    min-height: 120px;
    padding: 24px 0;
  }
  .header__brand-container {
    max-width: 100%;
    padding: 0;
    justify-content: center;
  }
  .header__brand-background {
    display: none;
  }
  .header__logo {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .header__logo-puls,
  .header__logo-zdrowia {
    font-size: 40px;
  }
  .header__nav-items {
    display: none;
  }
  .header__nav {
    display: none;
  }
  .header__nav-separator {
    display: none;
  }
  .header__utility-container {
    flex-direction: column;
    gap: 16px;
  }
  .article__images-duo {
    position: static;
    height: auto;
  }
  .article__image-main {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
  }
  .article__image-rotated {
    position: static;
    transform: none;
    width: 80%;
    margin: 0 auto;
  }
  .article__two-col {
    flex-direction: column;
  }
  .article__two-col-image {
    width: 100%;
  }
  .article__section--benefits .benefits {
    flex-direction: column;
    padding: 24px;
  }
  .benefits__image {
    width: 100%;
  }
  .testimonial {
    flex-direction: column;
  }
  .testimonial__image {
    width: 100%;
    max-width: 188px;
    margin: 0 auto;
  }
  .testimonial__quote {
    position: absolute;
    top: 16px;
    right: 16px;
  }
  .doctor-quote__layout {
    flex-direction: column;
  }
  .doctor-quote__image {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 480px) {
  .header__notification-container {
    flex-direction: column;
    text-align: center;
  }
  .header__logo-puls,
  .header__logo-zdrowia {
    font-size: 32px;
  }
  .content-wrapper {
    padding: 0 12px;
  }
  .article__cta-link,
  .comments__cta-link {
    font-size: 20px;
    word-break: break-word;
  }
  .comment {
    padding: 12px;
  }
}
.text-red {
  color: #cf0000;
}

.text-green {
  color: #00af12;
}

.summary-page-container {
  width: 100%;
  background-color: #f5f6f4;
  padding: 24px 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.summary-page {
  background-color: #ffffff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 600px) {
  .summary-page {
    margin: 0 20px;
  }
}

.summary-main-content {
  width: 892px;
  max-width: 100%;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.summary-callpage {
  width: 100%;
  padding: 32px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.summary-callpage__wrap {
  width: 730px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.summary-callpage__heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  text-transform: uppercase;
}

.summary-callpage__title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.3;
  color: #cf0000;
  margin: 0;
}

.summary-callpage__subtitle {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.3;
  color: #343434;
  margin: 0;
}

.summary-callpage__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.summary-callpage__text {
  width: 100%;
}
.summary-callpage__text p {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  color: #343434;
  margin: 0;
  margin-bottom: 0;
}
.summary-callpage__text p:last-child {
  margin-bottom: 0;
}
.summary-callpage__text strong {
  font-weight: 700;
}

.summary-callpage__cta-text {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: #343434;
  text-align: center;
  margin: 0;
  min-width: 100%;
}

.summary-callpage__button {
  background-color: #00af12;
  color: #ffffff;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  text-align: center;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.summary-callpage__button:hover {
  opacity: 0.9;
}
.summary-callpage__button.hidden {
  display: none;
}

a:has(.summary-callpage__button-show) {
  display: none;
  text-decoration: none;
}
a:has(.summary-callpage__button-show).visible {
  display: block;
}

.summary-callpage__button-show {
  background-color: #00af12;
  color: #ffffff;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 32px);
  line-height: 1.5;
  text-align: center;
  padding: 20px 40px;
  border: none;
  text-decoration: none;
  transition: opacity 0.2s ease;
  display: block;
}
.summary-callpage__button-show:hover {
  opacity: 0.9;
}

.summary-callpage__footer-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.summary-callpage__info-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.summary-callpage__info-text {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.5;
  color: #343434;
  margin: 0;
}

.summary-callpage__info-note {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.5;
  color: #343434;
  margin: 0;
}

.summary-callpage__warning {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  color: #cf0000;
  text-align: center;
  margin: 0;
}
.summary-callpage__warning strong {
  font-weight: 700;
}

@media (max-width: 1024px) {
  .summary-main-content {
    width: 100%;
  }
  .summary-callpage__wrap {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .summary-page-container {
    padding: 16px 0 32px;
  }
  .summary-page {
    padding: 0 16px;
  }
  .summary-callpage {
    padding: 24px 0 16px;
  }
  .summary-callpage__wrap {
    gap: 24px;
  }
  .summary-callpage__button {
    width: 100%;
    white-space: normal;
    padding: 12px 16px;
  }
}
@media (max-width: 480px) {
  .summary-page-container {
    padding: 12px 0 24px;
  }
  .summary-page {
    padding: 0 12px;
  }
  .summary-callpage__wrap {
    gap: 20px;
  }
  .summary-callpage__heading {
    gap: 12px;
  }
  .summary-callpage__content {
    gap: 12px;
  }
  .summary-callpage__footer-info {
    gap: 20px;
  }
  .summary-callpage__info-group {
    gap: 12px;
  }
}/*# sourceMappingURL=style.css.map */