h2.c-widget-title {
    display: inline-block;
    padding: 0 12px;
    position: relative;
    color: var(--text);
    text-transform: uppercase;
    line-height: 1;
}
h2.c-widget-title::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    -webkit-transform: skewX(-18deg);
    transform: skewX(-18deg);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}
.latest-post img {
    width:100%;
}
.label-name a {
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}
.popular-post-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.popular-post-thumbnail {
    flex: 0 0 105px;
    width: 120px;
    height: 105px;
}
h1 {
  font-size: clamp(1.8rem, 1.55rem + 1.75vw, 2.5rem);
  font-weight: 700;
  margin-bottom:1rem;
  letter-spacing: -.6px;
}

h2 {
  font-size: clamp(1.65rem, 1.4rem + 1.25vw, 2.3rem);
  font-weight: 700;
  margin-bottom:1rem;
  letter-spacing: -.6px;
}

h3 {
  font-size: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  font-weight: 700;
  margin-bottom:1rem;
  letter-spacing: -.6px;
}

h4 {
  font-size: clamp(1.25rem, 1.1rem + 0.8vw, 1.75rem);
  font-weight: 700;
  margin-bottom:1rem;
  letter-spacing: -.6px;
}

h5 {
  font-size: clamp(1.125rem, 1rem + 0.6vw, 1.5rem);
  font-weight: 600;
  margin-bottom:1rem;
  letter-spacing: -.6px;
}

h6 {
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.25rem);
  font-weight: 600;
  margin-bottom:1rem;
  letter-spacing: -.6px;
}
.bd-gutter {
    --bs-gutter-x: 2.5rem;
}
.list-populer {
    line-height: .9;
    margin-bottom: 0.5rem;
}
.author-image {
    overflow: hidden;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.pagination {
    padding: 30px 0;
    justify-content: center;
}
.pagination li a {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    padding: 8px 12px;
    margin-right: 10px;
    border-radius: 5px;
}
.pagination li.active a {
    background: #58505f;
    color: #fff;
}

.label-bar {
    background: linear-gradient(90deg, #7b22e7, #ad0ad3);
    padding: 10px 10px;
    display: flex;
    align-items: center;
    position: relative;
}
.label-list {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  gap: .875rem;
  text-transform: uppercase;
  list-style: none;
  margin-bottom: 2px;
  padding: 0;
}
.label-list li a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
}

.more-menu {
  position: relative;
  display: none;
}

.more-menu button {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.more-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 42px;
  background: linear-gradient(90deg, #7b22e7, #ad0ad3);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 99;
}

.more-dropdown li a {
display: flex;
padding: 8px 16px;
text-transform: uppercase;
white-space: nowrap;
color: #fff;
font-size: 12px;
font-weight: bold;
text-decoration: none;
}

.more-menu.show .more-dropdown {
  display: block;
}
.article-post{font-size:1.1rem !important;line-height: 1.55}
@media (min-width: 768px){.article-post { font-size: 1.15rem!important}}
@media (min-width: 992px){.article-post { font-size: 1.2rem!important}}
@media (min-width: 1200px){.article-post { font-size: 1.22rem!important}}
.shopee-button {
    display: inline-block;
    padding: 3px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #ff7b37, #ff4500);
    box-shadow: 0 4px 0 #d63b00, 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease-in-out;
}
.shopee-button:hover {
  background: linear-gradient(135deg, #ff8c4a, #ff5a1f);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #d63b00, 0 10px 20px rgba(0,0,0,0.25);
}
.shopee-button:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #d63b00, 0 4px 10px rgba(0,0,0,0.2);
}