﻿:root {
  --brpro-bg: #f8f9fa;
  --brpro-panel: #ffffff;
  --brpro-panel-2: #fdfdfd;
  --brpro-border: #e9ecef;
  --brpro-text: #212529;
  --brpro-muted: #6c757d;
  --brpro-muted-2: #adb5bd;
  --brpro-accent: #e85d04;
  --brpro-accent-2: #dc2f02;
  --brpro-accent-3: #f48c06;
  --brpro-radius: 16px;
  --brpro-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  --brpro-shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.04);
  --brpro-max: 1240px;
}

html,
body {
  height: 100%;
  background: var(--brpro-bg);
}

body {
  margin: 0;
  color: var(--brpro-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.pagebody {
  background: transparent;
}
 
.brpro-home {
  position: relative;
  min-height: 100vh;
  color: var(--brpro-text);
  background: var(--brpro-bg);
}
 
.brpro-bg {
  display: none;
}
 
.brpro-container {
  width: min(var(--brpro-max), calc(100% - 32px));
  margin: 0 auto;
  box-sizing: border-box;
}

.brpro-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--brpro-border);
  backdrop-filter: blur(12px);
}

.brpro-topbar-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}
 
.brpro-topbar-row2 {
  padding-top: 0;
  padding-bottom: 10px;
}

.brpro-topbar-row1 {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: center;
  gap: 20px;
}

.brpro-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brpro-text);
  text-decoration: none;
  min-height: 44px;
}

.brpro-brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--brpro-accent), var(--brpro-accent-2));
  box-shadow: 0 4px 10px rgba(232, 93, 4, 0.3);
}

.brpro-brand-text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brpro-text);
}

.brpro-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 480px;
  min-height: 44px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid var(--brpro-border);
  background: #f1f3f5;
  transition: border-color 0.2s, background-color 0.2s;
  margin: 0 auto;
  justify-self: center;
}

.brpro-search:focus-within {
  background: #ffffff;
  border-color: var(--brpro-accent);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
}

.brpro-search-input {
  flex: 1;
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--brpro-text);
  font-size: 14px;
  padding-left: 12px;
}

.brpro-search-input::placeholder {
  color: var(--brpro-muted-2);
}

.brpro-search-btn {
  min-height: 32px;
  padding: 0 16px;
  border-radius: 999px;
  border: none;
  background: var(--brpro-accent);
  color: #ffffff;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.brpro-search-btn:hover {
  background: var(--brpro-accent-2);
}

.brpro-mobile-search-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--brpro-text);
  border-radius: 50%;
  transition: background-color 0.2s;
}

.brpro-mobile-search-btn:hover {
  background: var(--brpro-bg);
}

.brpro-actions-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

.brpro-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brpro-action-shelf {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brpro-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.brpro-action-shelf:hover {
  color: var(--brpro-accent);
}

.brpro-user-profile {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 4px 12px 4px 4px;
  border-radius: 999px;
  background: var(--brpro-bg);
  border: 1px solid var(--brpro-border);
  transition: all 0.2s;
}

.brpro-user-profile:hover {
  border-color: var(--brpro-accent);
  background: var(--brpro-panel);
}

.brpro-user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brpro-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brpro-muted);
}

.brpro-user-profile:hover .brpro-user-avatar {
  background: var(--brpro-accent-10);
  color: var(--brpro-accent);
}

.brpro-user-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--brpro-text);
  max-width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brpro-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  width: 100%;
  padding-bottom: 2px;
}
 
.brpro-nav::-webkit-scrollbar {
  height: 0;
}

.brpro-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--brpro-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s, background-color 0.2s;
}

.brpro-nav-link:hover {
  color: var(--brpro-text);
  background: #f1f3f5;
}

.brpro-nav-link.is-active {
  color: var(--brpro-accent);
  background: rgba(232, 93, 4, 0.1);
}

.brpro-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brpro-action {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 6px 16px;
  border-radius: 999px;
  color: var(--brpro-text);
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--brpro-border);
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.brpro-action:hover {
  border-color: var(--brpro-muted-2);
  box-shadow: var(--brpro-shadow-soft);
}

.brpro-action-primary {
  border: none;
  background: var(--brpro-accent);
  color: #ffffff;
}

.brpro-action-primary:hover {
  background: var(--brpro-accent-2);
  border-color: transparent;
  color: #ffffff;
}

.brpro-user-profile {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.brpro-topbar-user-name {
  color: var(--brpro-text);
  font-weight: 500;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brpro-user-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(232, 93, 4, 0.1);
  color: var(--brpro-accent);
}

.brpro-main {
  padding-top: 20px;
}

.brpro-auth {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 80;
}

.brpro-auth.is-open {
  display: block;
}

.brpro-auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}

.brpro-auth-panel {
  position: absolute;
  left: 50%;
  top: 12vh;
  transform: translateX(-50%);
  width: min(400px, calc(100% - 32px));
  border-radius: 20px;
  border: 1px solid var(--brpro-border);
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
  color: var(--brpro-text);
}

.brpro-auth-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--brpro-border);
}

.brpro-auth-tabs {
  display: inline-flex;
  gap: 12px;
}

.brpro-auth-tab {
  background: none;
  border: none;
  padding: 4px 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--brpro-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.brpro-auth-tab:hover {
  color: var(--brpro-text);
}

.brpro-auth-tab.is-active {
  color: var(--brpro-accent);
  border-color: var(--brpro-accent);
}

.brpro-auth-x {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #f1f3f5;
  color: var(--brpro-muted);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.brpro-auth-x:hover {
  background: #e9ecef;
  color: var(--brpro-text);
}

.brpro-auth-body {
  padding: 24px 20px;
  display: grid;
  gap: 16px;
}

.brpro-auth-form {
  display: none;
  gap: 16px;
}

.brpro-auth-form.is-active {
  display: grid;
}

.brpro-field {
  display: grid;
  gap: 8px;
}

.brpro-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--brpro-text);
}

.brpro-input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--brpro-border);
  background: #f8f9fa;
  color: var(--brpro-text);
  outline: none;
  transition: border-color 0.2s, background-color 0.2s;
}

.brpro-input:focus {
  background: #ffffff;
  border-color: var(--brpro-accent);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
}

.brpro-submit {
  min-height: 48px;
  border-radius: 10px;
  border: none;
  background: var(--brpro-accent);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 8px;
}

.brpro-submit:hover {
  background: var(--brpro-accent-2);
}

.brpro-auth-hint {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.brpro-link {
  color: var(--brpro-muted);
  text-decoration: none;
  font-size: 13px;
}

.brpro-link:hover {
  color: var(--brpro-accent);
}

.brpro-auth-foot {
  padding: 0 20px 20px;
}

.brpro-auth-msg {
  min-height: 18px;
  color: var(--brpro-accent-2);
  font-size: 13px;
  text-align: center;
}
 
.brpro-panel {
  background: var(--brpro-panel);
  border: 1px solid var(--brpro-border);
  border-radius: var(--brpro-radius);
  box-shadow: var(--brpro-shadow-soft);
}
 
.brpro-home .pagebodybox {
  width: 100%;
  margin: 0;
  margin-bottom: 20px;
}
 
.brpro-home .border-bottom {
  border-bottom: none;
}
 
.brpro-home .pagetitle {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 20px 14px;
  border-bottom: 1px solid var(--brpro-border);
}
 
.brpro-home .pagetitle h3 {
  margin: 0;
  position: relative;
  padding-left: 14px;
  font-size: 18px;
  font-weight: 700;
  color: var(--brpro-text);
}
 
.brpro-home .pagetitle h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 16px;
  border-radius: 4px;
  background: var(--brpro-accent);
}
 
.brpro-home .pagetitle .morea {
  font-size: 13px;
  font-weight: 500;
  color: var(--brpro-muted);
  text-decoration: none;
  transition: color 0.2s;
}
 
.brpro-home .pagetitle .morea:hover {
  color: var(--brpro-accent);
}
 
.brpro-topics .topicbox {
  overflow: hidden;
}
 
.brpro-topics .topicbanner ul {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding: 16px 20px 20px;
  margin: 0;
  list-style: none;
}
 
.brpro-topics .topicbanner li {
  grid-column: span 4;
  min-width: 0;
}
 
.brpro-topics .topicbanner a {
  display: grid;
  gap: 12px;
  padding: 0;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  background: transparent;
  transition: transform 0.2s;
}
 
.brpro-topics .topicbanner a:hover {
  transform: translateY(-4px);
}
 
.brpro-topics .topicbanner a:hover .imgbox {
  box-shadow: var(--brpro-shadow);
}
 
.brpro-topics .imgbox {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  background: #f1f3f5;
  transition: box-shadow 0.2s;
}
 
.brpro-topics .imgmask {
  display: none;
}
 
.brpro-topics .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
.brpro-topics .topicbanner h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--brpro-text);
  padding: 0 4px;
}
 
.brpro-split {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
 
.brpro-split .pageleft {
  grid-column: span 8;
}
 
.brpro-split .pageright {
  grid-column: span 4;
}
 
.brpro-home .pageleft,
.brpro-home .pageright {
  overflow: hidden;
}
 
.brpro-home .vlist,
.brpro-home .rightranklist {
  padding: 16px 20px 20px;
}
 
.brpro-home .nlist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
 
.brpro-home .nlist li a {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--brpro-border);
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
 
.brpro-home .nlist li a:hover {
  transform: translateY(-3px);
  border-color: #d1d5db;
  box-shadow: var(--brpro-shadow);
}
 
.brpro-home .nlist .cover .imgbox {
  border-radius: 8px;
  overflow: hidden;
  background: #f1f3f5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
 
.brpro-home .imgmask {
  display: none;
}
 
.brpro-home .nlist .cover {
  position: relative;
}
 
.brpro-home .nlist .status {
  position: absolute;
  left: 8px;
  top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brpro-accent);
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
 
.brpro-home .nlist .status em {
  font-style: normal;
  color: var(--brpro-text);
}
 
.brpro-home .nlist .name {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--brpro-text);
}
 
.brpro-home .nlist .desc {
  margin: 0;
  color: var(--brpro-muted);
  font-size: 13px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
 
.brpro-home .nlist .tag {
  color: var(--brpro-muted-2);
  font-size: 12px;
}
 
.brpro-home .nlist .listdata {
  display: flex;
  gap: 12px;
  color: var(--brpro-muted-2);
  font-size: 12px;
}
 
.brpro-home .pageright ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
 
.brpro-home .pageright li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: center;
}
 
.brpro-home .pageright li a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.2s;
}
 
.brpro-home .pageright li:first-child a {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  align-items: start;
  background: #f8f9fa;
}
 
.brpro-home .pageright .cover {
  width: 100%;
}
 
.brpro-home .pageright .cover .imgbox {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  aspect-ratio: 3 / 4;
}
 
.brpro-home .pageright .cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
.brpro-home .pageright li a:hover {
  background: #f1f3f5;
}
 
.brpro-home .pageright .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #f1f3f5;
  font-size: 12px;
  font-weight: 700;
  color: var(--brpro-muted);
}
 
.brpro-home .pageright li:first-child .num {
  background: var(--brpro-accent);
  color: #ffffff;
}

.brpro-home .pageright li:nth-child(2) .num {
  background: var(--brpro-accent-3);
  color: #ffffff;
}

.brpro-home .pageright li:nth-child(3) .num {
  background: #ffb703;
  color: #ffffff;
}
 
.brpro-home .pageright .infos .name {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--brpro-text);
}
 
.brpro-home .pageright .infos .desc {
  color: var(--brpro-muted);
  font-size: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 4px;
}

/* List Data Icons (Score & ReadCount) */
.listdata {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.listdata .score,
.listdata .readCount {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--brpro-muted);
}

.listdata .score::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #ffb703;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'%3E%3C/polygon%3E%3C/svg%3E") no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'%3E%3C/polygon%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.listdata .readCount::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: var(--brpro-muted);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z'%3E%3C/path%3E%3Ccircle cx='12' cy='12' r='3'%3E%3C/circle%3E%3C/svg%3E") no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z'%3E%3C/path%3E%3Ccircle cx='12' cy='12' r='3'%3E%3C/circle%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
 
.brpro-home .pageright .txt {
  color: var(--brpro-muted);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
 
@media (max-width: 980px) {
  .brpro-topbar-row1 {
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }
  .brpro-search {
    display: none; /* Hide full search bar on mobile */
  }
  .brpro-mobile-search-btn {
    display: flex; /* Show icon button on mobile */
  }
  .brpro-actions-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .brpro-actions {
    margin-left: 0;
  }
  .brpro-topics .topicbanner li {
    grid-column: span 6;
  }
  .brpro-split .pageleft {
    grid-column: span 12;
  }
  .brpro-split .pageright {
    grid-column: span 12;
  }
  .brpro-home .nlist {
    grid-template-columns: 1fr;
  }
  .brpro-user-name {
    display: none; /* Hide name on mobile to save space */
  }
  .brpro-user-profile {
    padding: 4px; /* Adjust padding for just the avatar */
  }
  .shelf-text {
    display: none; /* Hide 'Estante' text on mobile */
  }
}
 
@media (max-width: 560px) {
  .brpro-container {
    width: min(var(--brpro-max), calc(100% - 24px));
  }
  .brpro-nav {
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .brpro-nav::-webkit-scrollbar {
    height: 0;
  }
  .brpro-actions-wrapper {
    width: auto;
    justify-content: flex-end;
  }
  .brpro-topics .topicbanner ul {
    grid-template-columns: repeat(6, 1fr);
  }
  .brpro-topics .topicbanner li {
    grid-column: span 6;
  }
  .brpro-home .pagetitle h3 {
    font-size: 16px;
  }
  .brpro-home .nlist li a {
    padding: 12px;
  }
}
 
@media (prefers-reduced-motion: reduce) {
  .brpro-btn,
  .brpro-topics .topicbanner a,
  .brpro-home .nlist li a,
  .brpro-home .pageright li a {
    transition: none;
  }
}

/* Pagination */
.brpro-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.brpro-pagination ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.brpro-pagination a,
.brpro-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--brpro-bg);
  border: 1px solid var(--brpro-border);
  color: var(--brpro-text);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.brpro-pagination a:hover {
  border-color: var(--brpro-accent);
  color: var(--brpro-accent);
  background: rgba(232, 93, 4, 0.05);
}

/* .brpro-pagination .current,
.brpro-pagination .now,
.brpro-pagination .active,
.brpro-pagination li.active a {
  background: var(--brpro-accent) !important;
  color: #fff !important;
  border-color: var(--brpro-accent) !important;
  cursor: default;
} */

.brpro-pagination li.active a, .brpro-pagination li.active span{
  background: #ff4747 !important;
  color: #fff !important;
  border-color: #ff4747 !important;
  cursor: default;
}

@media (max-width: 560px) {
  .brpro-pagination {
    margin-top: 24px;
  }
  .brpro-pagination a,
  .brpro-pagination span {
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    font-size: 13px;
  }
}



