/* Reset some default styles */

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

body,
h1,
h2,
h3,
p,
ul,
li {
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  background-color: #fafaf9;
}

.sora_font {
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.blog_card {
  width: 368px;
  box-shadow: 8px 8px 20px 0px rgba(85, 85, 85, 0.08);
  border-radius: 10px;
  background-color: #ffffff;
}

.card_img {
  width: 100%;
  height: 152px;
  border-radius: 10px;
}

.card_tag {
  background-color: #f2eafd;
  padding: 6px 16px;
  border-radius: 20px;
  color: #7c19ee;
  font-size: 10px;
  font-weight: 500;
}

.content_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 16px 0 16px;
}

.card_title {
  font-size: 18px;
  color: #20293a;
  font-weight: 600;
}

.card_body_text {
  font-size: 14px;
  color: #394150;
  font-weight: 300;
}

.text_container {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.solid_divider {
  height: 1px;
  background-color: #e5eaf0;
  border: none;

  margin-top: 20px;
  margin-bottom: 20px;
}

.blog_writer_name_container {
  padding: 0 16px 20px 16px;
}

.blog_writer_name_text {
  font-size: 12px;
}

.author-info {
  font-size: 14px;
  text-align: center;
  margin-top: 16px;
  color: rgb(55, 65, 81);
  position: absolute;
  bottom: 16px;
}

.author-info a {
  text-decoration: none;
}
