
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Roboto Serif", serif;
        color: #232323;
      }

      b {
        font-weight: 600;
      }

      .header-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px 0px;
        background: #ffffff;
      }

      .logo-block {
        display: flex;
        align-items: center;
      }

      .header-bar {
        background: #0060a0;
        color: #ffffff;
        text-align: center;
        padding: 10px 0;
        font-size: 14px;
        font-weight: 600;
      }

      main {
        padding: 24px 16px;
      }

      main > * {
        max-width: 727px;
      }

      @media (min-width: 1024px) {
        main {
          padding: 61px 0px 24px 170px;
        }
      }

      main h1 {
        font-size: 31px;
        font-weight: 600;
        line-height: 34px;
        color: #232323;
        margin-bottom: 24px;
      }

      h2 {
        font-weight: 700;
        font-size: 18px;
        font-style: italic;
        margin-top: 32px;
        line-height: 25px;
      }
      p {
        font-size: 16px;
        line-height: 23px;
        margin-top: 24px;
        font-weight: 400;
      }
      h3 {
        font-size: 16px;
        line-height: 23px;
        margin-top: 24px;
        font-weight: 600;
      }

      .link {
        font-size: 16px;
        line-height: 23px;
        font-weight: 700;
        text-decoration: underline;
        color: #0060a0;
      }
      .author-label {
        font-size: 16px;
        line-height: 18px;
        font-weight: 300;
        margin-bottom: 32px;
      }

      .author-block {
        border-left: 1px solid #0060a0;
        padding-left: 16px;
        margin-bottom: 32px;
      }

      .author-block .author-name {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 8px;
        line-height: 18px;
      }

      .author-block .author-role {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 8px;
        line-height: 18px;
      }

      .author-block .author-date {
        font-weight: 400;
        font-size: 12px;

        line-height: 18px;
      }

      main img {
        width: 100%;
      }
      .btn-wrap {
        max-width: 727px;
        display: flex;
        justify-content: center;
        margin-top: 24px;
      }
      .btn-cta {
        width: 100%;
        max-width: 492px;
        padding: 16px 24px;
        background: #0060a0;
        color: #ffffff;
        font-family: "Roboto Serif", serif;
        font-size: 16px;
        font-weight: 500;
        text-align: center;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.2s;
      }

      .comments-section {
        margin-top: 24px;
      }

      .comment {
        display: flex;
        gap: 16px;
        padding: 18px 0;

        align-items: flex-start;
      }

      .comment-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        line-height: 23px;
        font-weight: 600;
        color: #fff;
        flex-shrink: 0;
        background-color: #0060a0;
      }

      .comment-body {
        flex: 1;
      }

      .comment-name {
        font-size: 16px;
        font-weight: 600;
        line-height: 23px;
        color: #232323;
      }

      .comment-time {
        font-size: 12px;
        color: #5f5f5f;
        font-weight: 300;
        line-height: 19px;
        margin-bottom: 12px;
      }

      .comment-text {
        margin-top: 24px;
        font-size: 16px;
        line-height: 25px;

        margin-left: -66px;
      }

   
      @media (max-width: 768px) {
        main h1 {
          font-size: 25px;
        }
        .comment-text {
          margin-left: -52px;
        }
      }
