
.article-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	padding-top: 80px;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
  }
  

  .main-content {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
	flex: 3;
  }

  .card {
	background: white;
	border-radius: 10px;
	padding: 10px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  .card img {
	width: 100%;
	border-radius: 8px;
	height: 160px;
	object-fit: cover;
  }

  .card .category {
	color: gray;
	margin: 10px 0 5px;
  }

  .card h4 {
	font-size: 16px;
	margin: 5px 0;
  }

  .card .description {
	font-size: 14px;
	color: #555;
  }

  .card button {
	background: linear-gradient(90deg, #e73229, #f28c13);
	color: white;
	padding: 8px 16px;
	border: 1px solid #fff;
	border-radius: 10px;
	margin-top: 10px;
	cursor: pointer;
  }

  .sidebar {
	flex: 1;
	position: sticky;
	top: 20px;
	height: fit-content;
	/* margin-top: -85px; */
  }

  .author {
	text-align: center;
	/* background: white; */
	background: linear-gradient(90deg, #e73229, #f28c13);
	/* border-radius: 10px; */
	margin-bottom: 20px;
	padding-bottom: 10px;
	border: 1px solid  #e73229;
	color: #fff;
  }
  .article-footer-social{
	background: linear-gradient(90deg, #de0e0e, #fc8823);
    color: black;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
	margin: auto;
  }

  .author img {
	width: 100%;
	margin-bottom: 30px;
	/* border-radius: 50%; */
  }

  .author h3{
	font-size: 18px;
	margin-bottom: 10px;
  }
  .products {
	background: white;
	padding: 20px;
	border-radius: 10px;
  }

  .products .product {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
  }

  .products .product img {
	width: 60px;
	margin-right: 10px;
	border-radius: 5px;
  }

  .products .product p {
	margin: 0;
  }

  .products .product a {
	font-size: 13px;
	color: #2196f3;
  }

  .pagination-wrapper {
	text-align: center;
	margin: 40px auto 0;
	clear: both;
  }
  
  #pagination button {
	margin: 0px 4px;
	margin-bottom: 30px;
	padding: 8px 14px;
	border: 1px solid #ccc;
	background: #fff;
	cursor: pointer;
	border-radius: 5px;
	transition: background 0.3s ease;
  }
  
  #pagination button:hover {
	background-color: #f44336;
	color: #fff;
  }
  
  #pagination button[style*="font-weight:bold"] {
	background-color: #f44336;
	color: white;
	font-weight: bold;
  }
  
  