.blog {
  padding: 48px 16px;
}

.blog__container {
  max-width: 1150px;
  margin: 0 auto;
}

.blog__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.blog__title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 600;
  color: #0f1729;
  margin: 0;
}

@media (max-width: 767px) {
  .blog__title {
    font-size: 32px;
  }
}

.blog__description {
  font-size: 18px;
  line-height: 1.6;
  color: #65758b;
  margin-top: 12px;
  margin-bottom: 0;
  max-width: 670px;
  text-align: center;
}

.blog__empty {
  color: #65758b;
  font-size: 16px;
  margin: 0;
  padding: 32px 0;
  text-align: center;
}

.blog__pagination {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e1e7ef;
  display: flex;
  justify-content: center;
  position: relative;
}

.blog__pagination a,
.blog__pagination span {
  display: flex;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  margin: 0 4px;
  font-size: 14px;
  font-weight: 500;
  color: #0f1729;
  text-decoration: none;
  border: 1px solid #e1e7ef;
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.blog__pagination a:hover {
  border-color: #3182ed;
  background: rgba(49, 130, 237, 0.06);
  color: #3182ed;
}

.blog__pagination span.current {
  border-color: #3182ed;
  background: #3182ed;
  color: #fff;
  cursor: default;
}

.blog__pagination span.dots {
  border: 0;
  background: transparent;
  cursor: default;
}

.blog__pagination .prev,
.blog__pagination .next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e1e7ef;
  border-radius: 8px;
  background: #fff;
  position: absolute;
  padding: 0;
}

.blog__pagination .prev:hover,
.blog__pagination .next:hover {
  border-color: #3182ed;
  background: rgba(49, 130, 237, 0.06);
  color: #3182ed;
}

.blog__pagination .prev {
  left: 0;
}

.blog__pagination .next {
  right: 0;
}

.blog__pagination .blog__pagination-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.blog__pagination .blog__pagination-arrow--next:hover {
  transform: translateX(4px);
}

.blog__pagination .blog__pagination-arrow--prev:hover {
  transform: translateX(-4px);
}

.blog-posts {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog__other-posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .blog__other-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog__other-posts {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog__post {
  border: 1px solid #d7dfea;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.blog__post:hover {
  border-color: #3182edff;
  box-shadow: 0 4px 12px rgba(49, 130, 237, 0.08);
}

.blog__post-col--media .blog__post-thumbnail {
  display: block;
  overflow: hidden;
}

.blog__post-col--media .blog__post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.blog__post-col--content {
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.blog__post-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #fff !important;
  text-decoration: none;
  padding: 2px 10px;
  background: #3182edff;
  width: fit-content;
  border-radius: 9999px;
  line-height: 16px;
}

.blog__post-title {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  margin-top: 6px;
  margin-bottom: 0;
}

.blog__post-title a {
  color: #0f1729;
  text-decoration: none;
}

.blog__post-title a:hover {
  color: #3182ed;
}

.blog__post-excerpt {
  font-size: 14px;
  line-height: 1.55;
  margin-top: 8px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #65758b;
  overflow: hidden;
}

.blog__post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  margin-top: 20px;
  font-size: 13px;
  color: #65758b;
}

.blog__post-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog__post-date-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.blog__post-readtime {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog__post-readtime-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.blog__first-post {
  width: 100%;
}

.blog__first-post .blog__post {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid #d7dfea;
  border-radius: 12px;
  overflow: hidden;
  gap: 32px;
}

@media (min-width: 640px) {
  .blog__first-post .blog__post {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    border-radius: 12px;
  }
}

.blog__first-post .blog__post-col--media {
  order: 1;
}

@media (min-width: 640px) {
  .blog__first-post .blog__post-col--media {
    min-height: 0;
  }
}

.blog__first-post .blog__post-col--content {
  order: 2;
}

.blog__first-post .blog__post-thumbnail {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

@media (min-width: 640px) {
  .blog__first-post .blog__post-thumbnail {
    aspect-ratio: auto;
    height: 100%;
    min-height: 0;
  }
}

.blog__first-post .blog__post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px 12px 0 0;
}

@media (min-width: 640px) {
  .blog__first-post .blog__post-thumbnail img {
    border-radius: 12px 0 0 12px;
  }
}

.blog__first-post .blog__post-category {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: #3182ed;
  text-decoration: none;
}

.blog__first-post .blog__post-category:hover {
  text-decoration: underline;
}

.blog__first-post .blog__post-title {
  font-size: 30px;
  line-height: 1.3;
  margin-top: 8px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .blog__first-post .blog__post-title {
    font-size: 24px;
  }
}

.blog__first-post .blog__post-title a {
  color: #0f1729;
  text-decoration: none;
}

.blog__first-post .blog__post-title a:hover {
  color: #3182ed;
}

.blog__first-post .blog__post-excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: #65758b;
  margin-top: 12px;
  margin-bottom: 0;
}

.blog__first-post .blog__post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
  font-size: 14px;
  color: #65758b;
}

.blog__first-post .blog__post-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog__first-post .blog__post-date-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.blog__first-post .blog__post-readtime {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog__first-post .blog__post-readtime-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.blog__first-post .blog__post-readmore {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  width: fit-content;
  padding: 8px 16px;
  background: #3182edff;
  border-radius: 10px;
  line-height: 20px;
}

.blog__first-post .blog__post-readmore:hover .blog__post-readmore-icon {
  transform: translateX(4px);
}

.blog__first-post .blog__post-readmore-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.blog__first-post .blog__post-col--content {
  padding: 24px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .blog__first-post .blog__post-col--content {
    padding: 32px 32px 32px 0;
  }
}

/*# sourceMappingURL=blog.css.map */