/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/
:root {
  --font-family-base: sans-serif;
  --text-color: #333;
  --link-color: #009dbc;
  --link-hover: #0f80ba;
}

/*--------------------------------------------------------------
# Mixins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Component
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Component
--------------------------------------------------------------*/
.pc-hidden {
  display: block;
}
@media screen and (min-width: 751px) {
  .pc-hidden {
    display: none;
  }
}

/*--------------------------------------------------------------
# Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Style
--------------------------------------------------------------*/
.site-main {
  width: 100%;
  padding-bottom: 40px;
}
.site-main img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}
.site-main .container {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 751px) {
  .site-main .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 751px) {
  .site-main {
    min-width: 1080px;
    padding-bottom: 100px;
  }
}

.page-header {
  margin-bottom: 30px;
  padding: 20px 0;
  border-top: 1px solid #f4b3b5;
  background-color: #fbeeee;
}
.page-header__inner {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 751px) {
  .page-header__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.page-header__title {
  margin: 0 0 15px 0;
  font-size: 1.7rem;
  font-weight: 500;
  color: #907070;
}
.page-header__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 1.4rem;
}
.page-header__breadcrumbs a,
.page-header__breadcrumbs span {
  color: #907070;
}
.page-header__breadcrumbs__link.home {
  display: flex;
  align-items: center;
  gap: 3px;
}
.page-header__breadcrumbs__link.home::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 12px;
  background: url(../images/icon_home.png) no-repeat center/contain;
}
@media screen and (min-width: 751px) {
  .page-header {
    padding: 35px 0;
  }
  .page-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .page-header__title {
    flex: 1 1 auto;
    margin: 0;
    font-size: 2.4rem;
  }
  .page-header__breadcrumbs {
    flex: 0 0 auto;
  }
}

.cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
  margin-bottom: 30px;
  font-size: 1.5rem;
}
.cat-list__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  padding: 0 20px 1px 20px;
  border-style: solid;
  border-width: 1px;
  border-radius: 15px;
}
.cat-list__item a.all {
  color: white;
  border-color: #ca4b4b;
  background-color: #ca4b4b;
}
.cat-list__item a.news {
  color: #e60012;
  border-color: #e60012;
  background-color: #fdedee;
}
.cat-list__item a.parenting-advice {
  color: #c17400;
  border-color: #c17400;
  background-color: #faf7eb;
}
.cat-list__item a.courses {
  color: #22ac38;
  border-color: #22ac38;
  background-color: #e9f7ec;
}
.cat-list__item a.subsidy {
  color: #0068b7;
  border-color: #0068b7;
  background-color: #e5f0f8;
}
.cat-list__item a.maternity-support {
  color: #920783;
  border-color: #920783;
  background-color: #f6ecf5;
}
@media screen and (min-width: 751px) {
  .cat-list {
    gap: 20px;
    margin-bottom: 40px;
    font-size: 1.8rem;
  }
  .cat-list__item a {
    height: 35px;
    border-radius: 20px;
  }
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-list__item {
  width: 100%;
}
.article-list__item a {
  display: flex;
  width: 100%;
  padding: 10px;
  color: black;
  border: 1px solid #f29c9f;
  border-radius: 5px;
}
.article-list__image {
  width: 50%;
  padding-right: 10px;
  aspect-ratio: 520/360;
  overflow: hidden;
}
.article-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.article-list__text {
  width: 50%;
}
.article-list__cat {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.article-list__cat__item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  padding: 0 10px 1px 10px;
  border-style: solid;
  border-width: 1px;
  border-radius: 15px;
}
.article-list__cat__item.news {
  color: #e60012;
  border-color: #e60012;
  background-color: #fdedee;
}
.article-list__cat__item.parenting-advice {
  color: #c17400;
  border-color: #c17400;
  background-color: #faf7eb;
}
.article-list__cat__item.courses {
  color: #22ac38;
  border-color: #22ac38;
  background-color: #e9f7ec;
}
.article-list__cat__item.subsidy {
  color: #0068b7;
  border-color: #0068b7;
  background-color: #e5f0f8;
}
.article-list__cat__item.maternity-support {
  color: #920783;
  border-color: #920783;
  background-color: #f6ecf5;
}
.article-list__title {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 751px) {
  .article-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 15px;
  }
  .article-list__item {
    flex: 0 0 calc(33.3333333333% - 10px);
  }
  .article-list__item a {
    display: block;
    height: 100%;
    padding: 20px;
    border-radius: 10px;
  }
  .article-list__image {
    width: 100%;
    margin-bottom: 15px;
    padding: 0;
    aspect-ratio: 520/360;
    overflow: hidden;
  }
  .article-list__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
  .article-list__text {
    width: 100%;
  }
  .article-list__cat {
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
  .article-list__title {
    font-size: 1.8rem;
  }
}

.pagination {
  margin-top: 30px;
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.pagination .nav-links:not(:has(.prev))::before, .pagination .nav-links:not(:has(.next))::after {
  content: "";
  flex: 0 0 36px;
  height: 36px;
}
.pagination .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  color: #ca4b4b;
  border: 1px solid #ca4b4b;
  border-radius: 5px;
  font-size: 1.6rem;
}
.pagination .page-numbers.current {
  color: #fff;
  background-color: #ca4b4b;
  border-color: #ca4b4b;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next, .pagination .page-numbers.dots {
  border: 0;
}
.pagination img {
  width: 14px;
  height: 19px;
}
.pagination .next img {
  transform: rotate(180deg);
}
@media screen and (min-width: 751px) {
  .pagination {
    margin-top: 40px;
  }
  .pagination .nav-links {
    gap: 12px;
  }
  .pagination .nav-links:not(:has(.prev))::before, .pagination .nav-links:not(:has(.next))::after {
    flex-basis: 40px;
    height: 40px;
  }
  .pagination .page-numbers {
    font-size: 2.2rem;
  }
}

.error-404 {
  margin-bottom: 40px;
  padding: 35px 0 10px;
  text-align: center;
}

.not-found__label {
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #ca4b4b;
  letter-spacing: 0;
}
.not-found__title {
  margin-bottom: 15px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #6d4d4f;
  line-height: 1.5;
}
.not-found__text {
  margin-bottom: 25px;
  font-size: 1.5rem;
  line-height: 2;
}
.not-found__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.not-found__button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(100%, 280px);
  min-height: 50px;
  padding: 10px 18px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #ca4b4b;
  border: 1px solid #ca4b4b;
  border-radius: 5px;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.not-found__button a:hover {
  color: white;
  background-color: #ca4b4b;
}
@media screen and (min-width: 751px) {
  .not-found__label {
    font-size: 1.8rem;
  }
  .not-found__title {
    font-size: 3rem;
  }
  .not-found__text {
    margin-bottom: 35px;
    font-size: 1.8rem;
  }
  .not-found__button {
    justify-content: center;
  }
  .not-found__button a {
    width: 280px;
    min-height: 60px;
    font-size: 2rem;
    border-radius: 10px;
  }
}

@media screen and (min-width: 751px) {
  .error-404 {
    margin-bottom: 80px;
    padding-top: 60px;
  }
}
.entry-header {
  margin-bottom: 20px;
}
.entry-header__cat {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0 0 15px;
  padding: 0;
  list-style: none;
  font-size: 1.5rem;
}
.entry-header__cat__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  padding: 0 20px;
  border-style: solid;
  border-width: 1px;
  border-radius: 15px;
  text-decoration: none;
}
.entry-header__cat__item a.news {
  color: #e60012;
  border-color: #e60012;
  background-color: #fdedee;
}
.entry-header__cat__item a.parenting-advice {
  color: #c17400;
  border-color: #c17400;
  background-color: #faf7eb;
}
.entry-header__cat__item a.courses {
  color: #22ac38;
  border-color: #22ac38;
  background-color: #e9f7ec;
}
.entry-header__cat__item a.subsidy {
  color: #0068b7;
  border-color: #0068b7;
  background-color: #e5f0f8;
}
.entry-header__cat__item a.maternity-support {
  color: #920783;
  border-color: #920783;
  background-color: #f6ecf5;
}
.entry-header__title {
  margin: 0 0 30px 0;
  padding-left: 10px;
  font-size: 2.4rem;
  color: #6d4d4f;
  line-height: 1.4;
  border-left: 8px solid #ca4b4b;
}
.entry-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.entry-header__meta time {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.3rem;
  color: #907070;
}
@media screen and (min-width: 751px) {
  .entry-header {
    margin-bottom: 40px;
  }
  .entry-header__title {
    margin-bottom: 25px;
    padding-left: 20px;
    font-size: 3.6rem;
    border-left-width: 10px;
  }
  .entry-header__cat {
    gap: 20px;
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  .entry-header__cat__item a {
    height: 35px;
    border-radius: 20px;
  }
  .entry-header__meta time {
    font-size: 1.4rem;
  }
}

.entry-content {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 90px;
}
.entry-content h2 {
  position: relative;
  margin: 30px 0;
  padding: 10px;
  font-size: 21px;
  font-weight: bold;
  color: white;
  line-height: 1.4;
  background: #ca4b4b;
}
.entry-content h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #ca4b4b;
}
.entry-content h3 {
  display: block;
  width: fit-content;
  max-width: 100%;
  position: relative;
  padding-bottom: 8px;
  font-size: 18px;
  color: #ca4b4b;
}
.entry-content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 6px;
  opacity: 0.3;
  background: repeating-linear-gradient(-45deg, #ca4b4b, #ca4b4b 2px, transparent 2px, transparent 4px);
}
.entry-content h4 {
  display: block;
  width: fit-content;
  padding-bottom: 5px;
  font-size: 16px;
  color: #ca4b4b;
  border-bottom: 1px solid #ca4b4b;
}
.entry-content p {
  margin: 20px 0;
  font-size: 14px;
  color: #6d4d4f;
}
.entry-content mark {
  color: #6d4d4f;
}
.entry-content .text-marker {
  margin-right: 5px;
  font-size: 15px;
  font-weight: bold;
  background: linear-gradient(transparent 65%, #efc9c9 65%);
}
.entry-content .wp-block-image {
  margin-bottom: 20px;
}
@media screen and (min-width: 751px) {
  .entry-content h2 {
    margin: 40px 0;
    font-size: 24px;
  }
  .entry-content h3 {
    font-size: 24px;
  }
  .entry-content h3:after {
    height: 9px;
  }
  .entry-content h4 {
    font-size: 20px;
  }
  .entry-content p {
    margin: 30px 0;
    font-size: 16px;
  }
  .entry-content .wp-block-image {
    margin-bottom: 40px;
  }
  .entry-content .text-marker {
    font-size: 18px;
  }
}
.entry-content:has(+ .article-author) {
  margin-bottom: 40px;
}
.entry-content__thumbnail {
  margin-bottom: 20px;
}
.entry-content__thumbnail img {
  width: 100%;
}
@media screen and (min-width: 751px) {
  .entry-content:has(+ .article-author) {
    margin-bottom: 60px;
  }
  .entry-content__thumbnail {
    margin-bottom: 40px;
  }
}

div#ez-toc-container {
  display: block;
  margin: 40px 0;
  padding: 0;
  border: 2px solid #6d4d4f;
  border-radius: 0;
  box-shadow: none;
}
div#ez-toc-container .ez-toc-title-container {
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  margin: -2px 0 0 -2px;
  padding: 5px 20px;
  background: #6d4d4f;
  border-radius: 0 0 10px 0;
}
div#ez-toc-container .ez-toc-title-container:before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 16px;
  background: url(../images/icon_toc.png) no-repeat center/contain;
}
div#ez-toc-container .ez-toc-title-container .ez-toc-title {
  font-size: 1.7rem;
  font-weight: bold;
  color: white;
}
div#ez-toc-container .ez-toc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  font-size: 1.6rem;
}
div#ez-toc-container .ez-toc-list li a,
div#ez-toc-container .ez-toc-list li a:visited {
  color: #6d4d4f;
}
div#ez-toc-container .ez-toc-list li a:before,
div#ez-toc-container .ez-toc-list li a:visited:before {
  color: #6d4d4f;
}
div#ez-toc-container .ez-toc-list li.toc-preview-fade-second {
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
}
div#ez-toc-container .ez-toc-list li.toc-preview-fade-third {
  opacity: 0;
}
div#ez-toc-container .ez-toc-list li[hidden] {
  display: none !important;
}
@media screen and (min-width: 751px) {
  div#ez-toc-container {
    margin: 70px 0;
  }
  div#ez-toc-container .ez-toc-title-container {
    padding: 10px 36px 10px 20px;
    border-radius: 0 0 20px 0;
  }
  div#ez-toc-container .ez-toc-title-container .ez-toc-title {
    font-size: 2.2rem;
  }
  div#ez-toc-container .ez-toc-list {
    padding: 20px 45px;
    font-size: 1.8rem;
  }
  div#ez-toc-container .ez-toc-list li.toc-preview-fade-third {
    display: none;
  }
}

.toc-read-more {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 0 5px 0;
  background: transparent;
  font-weight: bold;
  font-size: 1.7rem;
  color: #ca4b4b;
  text-decoration: none;
  border-bottom: 1px solid #ca4b4b;
  appearance: none;
  cursor: pointer;
}
.toc-read-more:after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url(../images/icon_read-more.png) no-repeat center/contain;
}
.toc-read-more:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}
@media screen and (min-width: 751px) {
  .toc-read-more {
    bottom: 10px;
    left: auto;
    right: 30px;
    transform: translateX(0);
  }
}

.popular-article {
  margin-bottom: 40px;
}
.popular-article__title {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #6d4d4f;
  line-height: 1.4;
}
.popular-article__title:before {
  content: "";
  flex: 0 0 auto;
  display: block;
  width: 17.5px;
  height: 22.5px;
  background: url(../images/icon_popular.png) no-repeat center/contain;
}
.popular-article__title:after {
  content: "";
  flex: 1 1 auto;
  height: 2px;
  background: #6d4d4f;
}
@media screen and (min-width: 751px) {
  .popular-article {
    margin-bottom: 80px;
  }
  .popular-article__title {
    gap: 10px;
    font-size: 2.8rem;
  }
  .popular-article__title:before {
    width: 22px;
    height: 27px;
  }
}

.cta {
  margin-bottom: 40px;
  padding: 40px 0;
  background: url(../images/cta_bg.jpg) no-repeat center/cover;
}
.cta__inner {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 751px) {
  .cta__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta__text {
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #6d4d4f;
}
.cta__title {
  margin-bottom: 20px;
  font-size: 1.9rem;
  font-weight: bold;
  color: #6d4d4f;
  text-align: center;
}
.cta__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 65px;
  font-size: 1.9rem;
  font-weight: bold;
  color: white;
  background: #ca4b4b;
  border-radius: 5px;
  box-shadow: 0 4px 0 #6d4d4f;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.cta__button:hover {
  box-shadow: none;
  transform: translateY(4px);
  color: white;
}
@media screen and (min-width: 751px) {
  .cta {
    margin-bottom: 60px;
    padding: 60px 0;
  }
  .cta__text {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
  .cta__title {
    margin-bottom: 30px;
    font-size: 2.6rem;
  }
  .cta__button {
    width: 340px;
    height: 60px;
    font-size: 2.7rem;
    border-radius: 10px;
  }
}

.link {
  margin-bottom: 40px;
}
.link__inner {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 751px) {
  .link__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.link__button {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.link__button a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 160px;
  height: 36px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #ca4b4b;
  border: 1px solid #ca4b4b;
  border-radius: 5px;
  transition: all 0.3s ease 0s;
}
.link__button a:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(../images/icon_link_red.png) no-repeat center/contain;
}
.link__button a:hover {
  color: white;
  background: #ca4b4b;
}
.link__button a.line {
  color: white;
  background: #00b900;
  border-color: #00b900;
}
.link__button a.line:after {
  background: url(../images/icon_link_white.png) no-repeat center/contain;
}
.link__button a.line:hover {
  color: #00b900;
  background: white;
}
.link__text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.link__text a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-bottom: 3px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #ca4b4b;
  background-image: linear-gradient(#ca4b4b, #ca4b4b);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% 2px;
  transition: background-size 0.3s;
}
.link__text a:after {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background: url(../images/icon_caret.png) no-repeat center/contain;
}
.link__text a:hover {
  background-position: bottom right;
  background-size: 0 2px;
}
@media screen and (min-width: 751px) {
  .link {
    margin-bottom: 120px;
  }
  .link__button {
    margin-bottom: 40px;
  }
  .link__button a {
    position: relative;
    width: 280px;
    height: 60px;
    padding-right: 5px;
    font-size: 2.4rem;
    border-radius: 10px;
  }
  .link__button a:after {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 25px;
    height: 25px;
    margin-top: -12.5px;
  }
  .link__text {
    gap: 60px;
  }
  .link__text a {
    font-size: 2rem;
  }
  .link__text a:after {
    width: 21px;
    height: 21px;
  }
}

.article-author {
  padding-top: 30px;
}
.article-author__profile {
  position: relative;
}
.article-author__profile__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 0;
  padding: 30px 10px 10px 10px;
  background: url(../images/author_bg_sp.png) no-repeat center/cover;
  border: 1px solid #6d4d4f;
}
.article-author__title {
  position: absolute;
  top: -15px;
  left: 50%;
  margin-left: -111.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 223px;
  height: 30px;
  font-size: 1.6rem;
  color: white;
  background: #6d4d4f;
  border-radius: 15px;
}
.article-author__title::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/icon_pen.png) no-repeat center/contain;
}
.article-author__image {
  padding: 0 20px;
}
.article-author__image img {
  width: 100%;
  height: 100%;
}
.article-author__name {
  display: flex;
  align-items: center;
  font-size: 1.7rem;
  color: #6d4d4f;
  line-height: 1.5;
}
.article-author__name h3 {
  border-bottom: 1px dashed #6d4d4f;
}
.article-author__description {
  grid-column: 1/3;
  font-size: 1.4rem;
  color: #6d4d4f;
  line-height: 1.8;
}
@media screen and (min-width: 751px) {
  .article-author__profile {
    max-width: 800px;
    margin: 0 auto;
  }
  .article-author__profile__inner {
    grid-template-columns: 267px 1fr;
    padding: 45px 20px 20px 20px;
  }
  .article-author__title {
    top: -23px;
    left: 0;
    width: 320px;
    height: 46px;
    margin-left: 0;
    font-size: 2.4rem;
    border-radius: 0 23px 23px 0;
  }
  .article-author__image {
    grid-column: 1/2;
    grid-row: 1/3;
    padding: 0 20px;
  }
  .article-author__name {
    grid-column: 2/3;
    grid-row: 1/2;
    align-items: flex-end;
  }
  .article-author__name h3 {
    width: 100%;
    font-size: 2rem;
  }
  .article-author__description {
    grid-column: 2/3;
    grid-row: 2/3;
    font-size: 1.6rem;
  }
}
