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

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "InriaSerif";
  src: url(../fonts/inria/InriaSerif-Regular.ttf);
  font-weight: normal;
}
@font-face {
  font-family: "InriaSerif";
  src: url(../fonts/inria/InriaSerif-Bold.ttf);
  font-weight: bold;
}
@font-face {
  font-family: "InriaSerif";
  src: url(../fonts/inria/InriaSerif-Light.ttf);
  font-weight: 300;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/roboto/Roboto-Regular.ttf);
  font-weight: normal;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/roboto/Roboto-Bold.ttf);
  font-weight: bold;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/roboto/Roboto-Light.ttf);
  font-weight: 300;
}

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

body {
  background-color: rgba(235, 243, 247, 1);
  font-family: "Roboto", sans-serif;
  min-height: 100vh;
  font-weight: 400;
  letter-spacing: 0%;
  line-height: 1;
  color: rgba(30, 30, 30, 1);
}

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

.container {
  background-color: rgba(255, 255, 255, 1);
  max-width: 1000px;
  margin: 20px auto 50px auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 27px;
}

article {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

h1 {
  font-family: "InriaSerif", sans-serif;
  font-size: 46px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
}

.author-name {
  color: rgba(90, 146, 108, 1);
}

.article-publish {
  color: rgba(142, 142, 142, 1);
}

.author-img {
  width: 42px;
  height: 42px;
}

h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
}

p {
  font-size: 20px;
  line-height: 1.3;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

.comment-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 27px;
}

.comment-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 0;
}

.comment {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid rgba(142, 142, 142, 1);
  padding-bottom: 20px;
}

.avatar {
  min-width: 42px;
  height: 42px;
  background-color: rgba(0, 120, 213, 1);
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.comment-content {
  display: flex;
  flex-direction: column;
}

.comment-header {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 3px;
}

.comment-author {
  font-weight: 700;
}

.comment-text {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.comment-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comment-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer {
  background-color: rgba(205, 225, 235, 1);
  text-align: center;
  padding: 80px 0px 50px 0px;
  margin-top: 32px;
  font-size: 12px;
  color: #374151;
}

.footer .container {
  background-color: transparent;
  margin: 0 auto;
  padding: 0;
  gap: 12px;
}

.footer .logo {
  font-size: 18px;
  line-height: 1.1;
  color: rgba(0, 0, 0, 1);
}

.footer .logo span {
  font-weight: 700;
}

.footer .footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  line-height: 1.1;
  color: rgba(24, 117, 162, 1);
  text-decoration: underline;
}

.footer p {
  font-size: 12px;
  line-height: 1.1;
}

.link {
  color: rgba(0, 120, 213, 1);
}

img, .clickable {
  cursor: pointer;
}

@media (max-width: 1024px) {
  .article-title {
    font-size: 36px;
  }

  h3 {
    font-size: 28px;
  }

  .lander-form-field .lander-submit {
    font-size: 16px !important;
  }
  .lander-form-field .lander-submit:hover {
    font-size: 16px !important;
  }
}

@media (max-width: 768px) {
  .article-title {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
  }

  .article-meta {
    font-size: 10px;
  }

  .author-img {
    width: 30px;
    height: 30px;
  }

  .footer .container {
    padding: 0px 30px;
  }
}
