/*archivpage*/
.content-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.content-wrapper > div:first-child {
  flex: 0 0 60%;
  max-width: 60%;
}
.content-wrapper > div:last-child {
  flex: 0 0 25%;
  max-width: 25%;
}
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }
  .content-wrapper > div {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

.mancontener {
    padding-left: 10%;
}
/* post style man contener */
.allpost {
    display: flex;
    align-items: center;
    border: 1px solid #eae9e9;
    border-radius: 15px;
    padding: 10px;
    margin: 20px 0px !important;
}
.allpost:hover{
	box-shadow: 1px 5px 16px #eaeaea;
}

.allitems {
    margin-left: 3%;
}
a {
    text-decoration: none;
}
span.posted-on {
    font-size: 17px;
    background-color: #6FBFC7;
    color: white;
    padding: 5px;
    border-radius: 4px;
}
/* category list css */
aside#categories-6 nav ul {
    list-style: none;
    font-size: 18px;
    font-family: 'Poppins';
    color: #00BCD4;
}
/* 	recent post  */
.recent-posts-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 column layout */
  gap: 10px; /* Gap between items */
  padding: 0;
  list-style: none;
}

.recent-post-item {
  background: #f9f9f9; /* Light background for items */
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.recent-post-item a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.recent-post-item a:hover {
  color: #0073aa;
}
/* tag title property  */
.tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin-top: 10px;
}

.tagcloud a {
  display: inline-block;
  background-color: #0073aa; /* Tag ka background */
  color: #ffffff; /* Text color */
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.tagcloud a:hover {
  background-color: #005177;
  color: #ffffff;
}
