:root {
  --brg-inner-hero-min-height: 240px;
  --brg-inner-section-spacing: 4rem;
}

.brg-inner-hero {
  background: linear-gradient(135deg, #1a5f3a 0%, #2d8659 100%);
  color: #ffffff;
  padding: 3rem 1.5rem;
  text-align: center;
  min-height: var(--brg-inner-hero-min-height);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.brg-inner-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
  transform: rotate(15deg);
}

.brg-inner-hero__content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.brg-inner-hero__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.brg-inner-hero__subtitle {
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.6;
}

.brg-content-section {
  padding: var(--brg-inner-section-spacing) 0;
}

.brg-content-section:nth-child(even) {
  background-color: #f8f9fa;
}

.brg-content-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.brg-content-section__title {
  font-size: 2rem;
  color: #1a5f3a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.brg-content-section__intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.brg-text-block {
  max-width: 900px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.brg-text-block h3 {
  color: #1a5f3a;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.brg-text-block p {
  margin-bottom: 1rem;
  color: #333;
}

.brg-text-block ul,
.brg-text-block ol {
  margin: 1rem 0 1rem 1.5rem;
  color: #333;
}

.brg-text-block li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.brg-legal-section {
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 2rem;
  background: #ffffff;
  border-left: 4px solid #2d8659;
}

.brg-legal-section__title {
  font-size: 1.5rem;
  color: #1a5f3a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.brg-legal-section__content p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #333;
}

.brg-legal-section__content ul {
  margin: 1rem 0 1rem 1.5rem;
}

.brg-legal-section__content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.brg-game-detail {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.brg-game-detail__image {
  flex: 0 0 300px;
  border-radius: 8px;
  overflow: hidden;
}

.brg-game-detail__image img {
  width: 100%;
  height: auto;
  display: block;
}

.brg-game-detail__content {
  flex: 1;
  min-width: 280px;
}

.brg-game-detail__title {
  font-size: 1.8rem;
  color: #1a5f3a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.brg-game-detail__description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #333;
}

.brg-game-detail__features {
  list-style: none;
  padding: 0;
}

.brg-game-detail__features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #333;
}

.brg-game-detail__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2d8659;
  font-weight: bold;
}

.brg-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.brg-comparison-table thead {
  background: #1a5f3a;
  color: #ffffff;
}

.brg-comparison-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.brg-comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.brg-comparison-table tbody tr:hover {
  background-color: #f5f5f5;
}

.brg-comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.brg-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.brg-tip-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.brg-tip-card:hover {
  transform: translateY(-5px);
}

.brg-tip-card__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.brg-tip-card__title {
  font-size: 1.3rem;
  color: #1a5f3a;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.brg-tip-card__description {
  line-height: 1.6;
  color: #555;
}

.brg-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.brg-news-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.brg-news-card:hover {
  transform: translateY(-5px);
}

.brg-news-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.brg-news-card__content {
  padding: 1.5rem;
}

.brg-news-card__title {
  font-size: 1.2rem;
  color: #1a5f3a;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.brg-news-card__excerpt {
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
}

.brg-news-card__date {
  font-size: 0.9rem;
  color: #888;
}

.brg-page-hero {
  background: linear-gradient(135deg, #1a5f3a 0%, #2d8659 100%);
  color: #ffffff;
  padding: 3rem 1.5rem;
  text-align: center;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.brg-page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
  transform: rotate(15deg);
}

.brg-page-hero .brg-container {
  position: relative;
  z-index: 1;
}

.brg-page-hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.brg-page-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.6;
  margin-bottom: 0;
}

.brg-faq-intro {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

.brg-faq-block {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.brg-faq-block h2 {
  color: #1a5f3a;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #2d8659;
}

.brg-faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.brg-faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.brg-faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.brg-faq-item__question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
  color: #1a5f3a;
  background-color: transparent;
  transition: background-color 0.2s ease;
  cursor: pointer;
  border: none;
}

.brg-faq-item__question:hover {
  background-color: #f5f5f5;
}

.brg-faq-item__question span:first-child {
  flex: 1;
  padding-right: 1rem;
}

.brg-faq-item__icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #2d8659;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.brg-faq-item--open .brg-faq-item__icon {
  transform: rotate(45deg);
}

.brg-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.brg-faq-item--open .brg-faq-item__answer {
  max-height: 1000px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

.brg-faq-item__answer p {
  color: #333;
  line-height: 1.6;
  margin: 0;
}

.brg-faq-item__answer ul,
.brg-faq-item__answer ol {
  margin: 0.5rem 0 0 1.5rem;
  color: #333;
}

.brg-faq-item__answer li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.brg-contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.brg-contact-form-wrapper h2 {
  color: #1a5f3a;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.brg-contact-form-wrapper>p {
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.brg-form {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
}

.brg-form__group {
  margin-bottom: 1.5rem;
}

.brg-form__group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a5f3a;
}

.brg-form__group input,
.brg-form__group select,
.brg-form__group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-color: #ffffff;
}

.brg-form__group input:focus,
.brg-form__group select:focus,
.brg-form__group textarea:focus {
  outline: none;
  border-color: #2d8659;
  box-shadow: 0 0 0 3px rgba(45, 134, 89, 0.1);
}

.brg-form__group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.brg-form__group--checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
}

.brg-form__group--checkbox label {
  margin: 0;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
}

.brg-contact-info h2 {
  color: #1a5f3a;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.brg-contact-info__block {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #2d8659;
}

.brg-contact-info__block h3 {
  color: #1a5f3a;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.brg-contact-info__block p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.brg-contact-info__block p:last-child {
  margin-bottom: 0;
}

.brg-contact-info__block a {
  color: #2d8659;
  text-decoration: underline;
}

.brg-contact-info__block a:hover {
  color: #1a5f3a;
}

.brg-cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a5f3a 0%, #2d8659 100%);
  text-align: center;
  color: #ffffff;
  margin-top: 4rem;
}

.brg-cta-section h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.brg-cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.brg-cta-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.brg-legal-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

.brg-legal-intro {
  font-size: 1.1rem;
  background-color: #e8f5e9;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.brg-legal-date {
  color: #666;
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.brg-legal-content h2 {
  color: #1a5f3a;
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #2d8659;
}

.brg-legal-content h3 {
  color: #1a5f3a;
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.brg-legal-content p {
  margin-bottom: 1rem;
  color: #333;
}

.brg-legal-content ul,
.brg-legal-content ol {
  margin: 1rem 0 1.5rem 2rem;
  color: #333;
}

.brg-legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.brg-legal-content strong {
  color: #1a5f3a;
  font-weight: 600;
}

.brg-legal-content a {
  color: #2d8659;
  text-decoration: underline;
}

.brg-legal-content a:hover {
  color: #1a5f3a;
}

.brg-success-section {
  padding: 6rem 0;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brg-success-content {
  max-width: 600px;
  margin: 0 auto;
}

.brg-success-content h1 {
  font-size: 2.5rem;
  color: #1a5f3a;
  margin-bottom: 1.5rem;
}

.brg-success-content p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.brg-criteria {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.brg-criteria h2 {
  text-align: center;
  color: #1a5f3a;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.brg-criteria>.brg-container>p {
  text-align: center;
  color: #555;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.brg-ranking-detailed {
  padding: 4rem 0;
}

.brg-ranking-detailed h2 {
  text-align: center;
  color: #1a5f3a;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.brg-ranking-detailed__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.brg-ranking-detailed__item {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.brg-ranking-detailed__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 2px solid #e0e0e0;
}

.brg-ranking-detailed__position {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d8659;
  min-width: 60px;
  text-align: center;
}

.brg-ranking-detailed__info {
  flex: 1;
  min-width: 200px;
}

.brg-ranking-detailed__info img {
  max-width: 120px;
  height: auto;
  margin-bottom: 0.75rem;
}

.brg-ranking-detailed__info h3 {
  font-size: 1.5rem;
  color: #1a5f3a;
  margin-bottom: 0.5rem;
}

.brg-ranking-detailed__rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brg-ranking-detailed__rating .brg-stars {
  color: #f39c12;
  font-size: 1.2rem;
}

.brg-ranking-detailed__rating strong {
  color: #1a5f3a;
  font-size: 1.3rem;
}

.brg-ranking-detailed__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.brg-ranking-detailed__content {
  padding: 2rem;
}

.brg-ranking-detailed__content>p {
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.5rem;
}

.brg-ranking-detailed__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.brg-ranking-detailed__features h4 {
  color: #1a5f3a;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.brg-ranking-detailed__features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.brg-ranking-detailed__features li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: #333;
  line-height: 1.5;
}

.brg-ranking-detailed__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2d8659;
  font-weight: bold;
}

.brg-ranking-detailed__features p {
  color: #555;
  line-height: 1.5;
  margin-bottom: 0.25rem;
}

.brg-comparison {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.brg-comparison h2 {
  text-align: center;
  color: #1a5f3a;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.brg-comparison__table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.brg-comparison__table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: #ffffff;
}

.brg-comparison__table thead {
  background: #1a5f3a;
  color: #ffffff;
}

.brg-comparison__table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.brg-comparison__table td {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
  color: #333;
}

.brg-comparison__table tbody tr:hover {
  background-color: #f5f5f5;
}

.brg-comparison__table tbody tr:last-child td {
  border-bottom: none;
}

.brg-game-detail {
  padding: 4rem 0;
}

.brg-game-detail__item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: center;
}

.brg-game-detail__item--reverse {
  flex-direction: column;
}

.brg-game-detail__image {
  flex: 1;
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.brg-game-detail__image img {
  width: 100%;
  height: auto;
  display: block;
}

.brg-game-detail__content {
  flex: 1;
  max-width: 600px;
  width: 100%;
}

.brg-game-detail__content h2 {
  font-size: 2rem;
  color: #1a5f3a;
  margin-bottom: 0.75rem;
}

.brg-game-detail__tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background-color: #e8f5e9;
  color: #1a5f3a;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.brg-game-detail__content p {
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}

.brg-game-detail__content h3 {
  color: #1a5f3a;
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.brg-game-detail__content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.brg-game-detail__content li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: #333;
  line-height: 1.5;
}

.brg-game-detail__content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2d8659;
  font-weight: bold;
}

.brg-tips-detailed {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.brg-tips-detailed h2 {
  text-align: center;
  color: #1a5f3a;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.brg-tips-detailed__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.brg-tips-detailed__item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.brg-tips-detailed__icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.brg-tips-detailed__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brg-tips-detailed__content h3 {
  color: #1a5f3a;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.brg-tips-detailed__content p {
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}

.brg-tips-detailed__content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

/* News Page Styles */
.brg-news-grid {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.brg-news-grid .brg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.brg-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.brg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.brg-card--news .brg-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.brg-card--news .brg-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.brg-card:hover .brg-card__image img {
  transform: scale(1.05);
}

.brg-card__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.brg-card__date {
  display: inline-block;
  font-size: 0.85rem;
  color: #2d8659;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.brg-card__content h3 {
  font-size: 1.3rem;
  color: #1a5f3a;
  margin-bottom: 1rem;
  line-height: 1.4;
  font-weight: 700;
}

.brg-card__content p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.brg-card__content p:last-child {
  margin-bottom: 0;
}

/* Grid variations */
.brg-grid--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.brg-grid--cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.brg-grid--cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Responsive adjustments for news grid */
@media (max-width: 1024px) {

  .brg-news-grid .brg-grid,
  .brg-grid--cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .brg-grid--cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .brg-news-grid .brg-grid,
  .brg-grid--cols-2,
  .brg-grid--cols-3,
  .brg-grid--cols-4 {
    grid-template-columns: 1fr;
  }

  .brg-news-grid {
    padding: 2.5rem 0;
  }

  .brg-card__content h3 {
    font-size: 1.2rem;
  }
}