/* stylelint-disable @stylistic/selector-list-comma-newline-after */
:root {
  --bs-body-font-family:
    "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

body {
  font-weight: 400;
}

.blog-header-logo {
  font-weight: 600;
  letter-spacing: -0.5px;
}

.blog-header-logo:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  letter-spacing: -0.5px;
}

p {
  line-height: 1.6;
}

.flex-auto {
  flex: 0 0 auto;
}

.h-250 {
  height: 250px;
}

@media (min-width: 768px) {
  .h-md-250 {
    height: 250px;
  }
}

/* Pagination */
.blog-pagination {
  margin-bottom: 4rem;
}

/*
 * Blog posts
 */
.blog-post {
  margin-bottom: 4rem;
}

.blog-post-meta {
  margin-bottom: 1.25rem;
  color: #727272;
}

.admin-hero {
  background: linear-gradient(135deg,
      rgba(124, 58, 237, 0.18),
      rgba(236, 72, 153, 0.12));
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.sidebar-box {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--bs-body-bg);
}

.sidebar-header {
  background: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.anime-list {
  max-height: 70vh;
  overflow: auto;
}

.anime-link:hover {
  background: rgba(13, 110, 253, 0.06);
}


.review-card{
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  height: 260px;               
}


.review-card .row{
  height: 100%;
}


.review-img{
  width: 174px;
  height: 100%;               
  object-fit: cover;
  display: block;
}


.review-card .card-text{
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.review-card:hover{
  transform: translateY(-2px);
}

.nota {
  min-width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  background: rgba(236, 72, 153, 0.18);
  border: 1px solid rgba(236, 72, 153, 0.35);
}

aside {
  position: relative;
  z-index: 10;
}

section {
  position: relative;
  z-index: 1;
}

.linknone {
  text-decoration: none;
  color: black;
}

.pagination {
  gap: 0.25rem;
}

.page-link {
  border-radius: 0.5rem;
}

.page-item.active .page-link {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.container {
  padding-left: 0.35rem;
  padding-right: 0.35rem;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1600px;
  }
}