*,
:after,
:before {
  border: 0 solid #e5e7eb;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-tap-highlight-color: transparent;
  background-color: rgba(248, 248, 248, 1);
}

body {
  font-family: "Eugenio Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: rgba(43, 43, 43, 1);
}

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

strong {
  font-weight: bolder;
}

.article h3 a {
  color: #155586;
}

button,
input {
  color: inherit;
  font-feature-settings: inherit;
  font-size: 100%;
  font-variation-settings: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
}

button {
  background-color: transparent;
  background-image: none;
  text-transform: none;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

blockquote,
menu,
ul {
  margin: 0;
}

menu,
ul {
  list-style: none;
  padding: 0;
}

input::-moz-placeholder {
  color: #9ca3af;
  opacity: 1;
}

input::placeholder {
  color: #9ca3af;
  opacity: 1;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
  vertical-align: middle;
}

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

[hidden] {
  display: none;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 75px;
  margin: 100px 0px;
}

.container {
  max-width: 840px;
  padding: 0px 20px;
  margin: 0 auto;
}

.link {
  color: #155586;
  font-weight: 500;
}

.link:hover {
  text-decoration: underline;
}

/* HEADER */
.navbar {
  padding: 20px 0;
  font-family: "Arial", sans-serif;
  position: sticky;
  top: 0;
  background-color: rgba(248, 248, 248, 1);
  z-index: 999;
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 150px;
}

.burger {
  display: none;
}

.nav-container a {
  font-size: 16px;
  transition: color 0.2s ease;
  text-transform: uppercase;
}

.nav-container a:hover {
  opacity: 0.7;
}

.nav-container .logo img {
  height: 25px;
  width: auto;
  display: block;
}

/* ARTICLE */

.article-header__container {
  width: 100%;
  max-width: 1360px;
  padding: 0px 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.article-header__meta {
  font-family: "Arial", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
}

.article-header__title {
  font-family: "Eugenio Serif", serif;
  font-size: 64px;
  font-weight: 500;
  text-align: center;
}

.article-header__subtitle {
  font-family: "Eugenio Text", serif;
  line-height: 23px;
}

.article-header__stats {
  font-family: "Arial", sans-serif;
  display: flex;
  justify-content: center;
  gap: 100px;
}

.article-header__stats .stat {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 16px;
  text-transform: uppercase;
}

.article-header__stats .stat img {
  width: 20px;
  height: 20px;
}

.article {
  font-family: "Eugenio Text", serif;
  line-height: 23px;
}

.article h3 {
  font-family: "Eugenio Serif", serif;
  font-size: 20px;
  margin: 30px 0px;
  font-weight: 500;
}

.article p {
  margin-bottom: 30px;
}

.article ol {
  margin-bottom: 30px;
  padding-left: 30px;
}

.article ol > li {
  padding-bottom: 15px;
}

.article-image {
  margin-bottom: 30px;
}

.notice-line {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0px;
}

.notice-line::before,
.notice-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: rgba(43, 43, 43, 1);
  z-index: 0;
}

.notice-line::before {
  left: 0;
}

.notice-line::after {
  right: 0;
}

.notice-line__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: rgba(248, 248, 248, 1);
  z-index: 1;
  text-align: center;
  flex-wrap: wrap;
  padding: 0px 15px;
}

.notice-line__text {
  white-space: nowrap;
}

.notice-line__icon img {
  width: 27px;
  height: 27px;
}

/* COMMENTS */
.comments-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.comments-title {
  font-family: "Arial", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 120px;
  border: 1px solid rgba(191, 191, 191, 1);
  padding: 20px;
  border-radius: 5px;
}

.comment-form input {
  font-family: "Eugenio Text", sans-serif;
  border: none;
  outline: none;
  background-color: inherit;
  font-size: 14px;
  line-height: 23px;
}

.comment-form input::placeholder {
  color: rgba(191, 191, 191, 1);
}

.comment-form a {
  font-family: "Arial", sans-serif;
  align-self: flex-end;
  padding: 10px 20px;
  background-color: rgba(43, 43, 43, 1);
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.comment-form a:hover {
  background-color: #000;
}

.comments {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.comment {
  display: flex;
  gap: 10px;
}

.avatar {
  font-family: "Eugenio Serif", sans-serif;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background-color: rgba(205, 186, 153, 1);
  color: rgba(248, 248, 248, 1);
  font-weight: 500;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comment-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comment-author {
  font-family: "Eugenio Serif", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.comment-author:hover {
  opacity: 0.7;
}

.comment-time {
  font-family: "Arial", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
}

.comment-text {
  font-family: "Eugenio Text", sans-serif;
  line-height: 23px;
}

.comment-reactions {
  font-family: "Arial", sans-serif;
  display: flex;
  font-size: 14px;
  gap: 20px;
}

.comment-reaction {
  display: flex;
  align-items: center;
  gap: 5px;
}

.comment-reaction:hover {
  opacity: 0.7;
}

.comment-reaction img {
  width: 15px;
  height: 15px;
}

/* FOOTER */
.footer {
  background-color: rgba(43, 43, 43, 1);
  color: rgba(248, 248, 248, 1);
  padding: 50px 0px;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  line-height: 23px;
}

.footer-container {
  max-width: 1360px;
  padding: 0px 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.footer-logo {
  width: 122px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-transform: uppercase;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-text p {
  margin: 20px 0;
}

.footer .link {
  color: rgba(205, 186, 153, 1);
}

@media (max-width: 1024px) {
  .nav-container {
    gap: 100px;
  }

  .container {
    max-width: 100%;
  }

  .main {
    margin: 50px 0px;
  }

  .article-header__container {
    gap: 40px;
  }

  .article-header__meta,
  .article-header__subtitle,
  .article-header__stats .stat {
    font-size: 14px;
  }

  .article-header__title {
    font-size: 48px;
    text-align: center;
  }

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

@media (max-width: 768px) {
  .nav-container {
    justify-content: space-between;
    padding: 0px 10px;
  }

  .container {
    padding: 0px 10px;
  }

  .main {
    gap: 50px;
  }

  .nav-link {
    display: none;
  }

  .burger {
    display: block;
  }

  .article-header__container {
    padding: 0px 10px;
    gap: 30px;
  }

  .article-header__meta {
    text-align: center;
    padding: 0px 20px;
  }

  .article-header__meta span {
    display: none;
  }

  .article-header__title {
    font-size: 32px;
  }

  .notice-line__inner {
    flex-direction: column;
  }

  .notice-line__text {
    white-space: wrap;
    max-width: 200px;
  }

  .comment-text,
  .comment-reactions {
    margin-left: -40px;
  }

  .footer-container {
    gap: 40px;
  }
}
