  .magazine-page {
  padding: 40px 20px;
  background-color: #f7f7f7;
  font-family: 'Segoe UI', sans-serif;
}

.image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.cover-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.container
{
 background-color: #fff !important; 
   border: 1px solid #D0D0D0;
}
.content-wrapper {
  margin-top: 30px;

}

.magazine-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.content-wrapper p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

.content-wrapper ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.content-wrapper ul li {
  margin-bottom: 10px;
}

blockquote {
  background-color: #f9f9f9;
  border-left: 5px solid #cc0000;
  padding: 15px 20px;
  font-style: italic;
  color: #444;
}

.next-page {
  margin-top: 40px;
  text-align: right;
}

.next-button {
  background-color: #cc0000;
  color: #fff;
  padding: 5px 5px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.next-button:hover {
  background-color: #a00000;
}

@media (max-width: 768px) {
  .magazine-title {
    font-size: 24px;
    text-align: center;
  }

  .content-wrapper p,
  .content-wrapper ul li {
    font-size: 16px;
  }

  .next-page {
    text-align: center;
  }
    .carousel-item img {
    width:100% !important;
    margin: 0px auto;
  }
}
.breadcrumbs {
  margin: 20px auto;
  font-size: 16px;
  color: #666;
  padding: 10px 0;
}

.breadcrumbs a {
  color: #007BFF;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs .active {
  font-weight: bold;
  color: #FF5722; /* Change this to any active color you like */
}
.article-views {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 10px 0;
  font-size: 15px;
  color: #555;
}

.article-views .view-icon {
  margin-right: 5px;
  font-size: 18px;
}

.article-views .view-count {
  font-weight: bold;
}
 .art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.art-item {
  text-align: center;
}

.art-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-name {
  margin-top: 10px;
  font-weight: bold;
  font-size: 16px;
  color: #444;
}