.single-article-section {
  background: rgb(0, 0, 0);
  background: linear-gradient(
    18deg,
    rgba(0, 0, 0, 1) 30%,
    rgba(176, 125, 11, 1) 50%,
    rgba(0, 0, 0, 1) 70%
  );
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  overflow-x: hidden;
  padding: 4rem 0 4rem 0;
}

.single-article-section .section-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 50rem;
  margin: 1rem auto 1rem auto;
  padding: 2rem;
  text-align: center;
}

.single-article-section .section-title a {
  text-decoration: none;
  border-bottom: none;
}

.single-article-section .section-title h2 {
  color: #f2f0f0;
  margin: 0;
  width: 100%;
  max-width: 100%;
}

.single-article-section .divisor {
  width: 75%;
  height: 2px;
  background-color: #d39916;
  margin: 1rem auto;
}

.single-article-section .product-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  padding: 2rem 2rem 4rem 2rem;
}

.single-article-section .product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #d6d6d6;
  border-radius: 0.5rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  font-size: clamp(0.4rem, 0.75rem + 1.5vw, 1rem);
}

.single-article-section .product-card img {
  max-inline-size: 100%;
  block-size: auto;
  border-radius: 0.5rem 0.5rem 0 0;
}

.single-article-section .product-card-text {
  font-size: 14px;
  padding: 1rem 1rem 2rem 1rem;
  flex-grow: 1;
}

.single-article-section .product-card-text h3 {
  margin-bottom: 1rem;
  color: #000;
}

.single-article-section .product-card-div-button {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 0 0 2rem 0;
}

.single-article-section .product-card-div-button p {
  margin: 0;
  padding: 0;
}

.single-article-section .product-card-div-button a {
  text-decoration: none;
}

.single-article-section .product-card-button {
  align-items: center;
  background-color: #d39916;
  border: 1px solid #000;
  border-radius: 8px;
  box-sizing: border-box;
  color: #000;
  display: flex;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 140px;
  padding: 1px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
  font-family: "Oswald", Arial, sans-serif;
}

.single-article-section .product-card-button:active,
.single-article-section .product-card-button:hover {
  outline: 0;
}

.single-article-section .product-card-button span {
  background-color: #d39916;
  padding: 8px 16px;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  transition: 300ms;
}

.single-article-section .product-card-button:hover span {
  background-color: #000000;
  color: white;
}

@media (min-width: 960px) {
  .single-article-section .product-container {
    padding: 3rem 6rem 4rem 6rem;
  }
}

.article-container {
  display: flex;
  justify-content: center; /* Centraliza horizontalmente */
  padding: 4rem 1rem; /* Espaçamento nas laterais em telas menores */
}

.article {
  max-width: 1000px;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.article-header {
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.article-title {
  font-size: 24px;
  margin: 0;
  color: #333;
}

.article-meta {
  padding: 0.7rem 0 1rem ;
  font-size: 14px;
  color: #666;
}

.article-content p {
  margin-bottom: 15px;
}

blockquote {
  margin: 20px 0;
  padding: 15px;
  border-left: 4px solid #007bff;
  background-color: #f9f9f9;
  font-style: italic;
  color: #555;
}

.article-footer {
  margin-top: 20px;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.tags a {
  color: #007bff;
  text-decoration: none;
}

.tags a:hover {
  text-decoration: underline;
}
