.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.container.wide {
  max-width: 1300px;
}
.blog-title {
  font-size: 2.5rem;
  text-align: center;
}
.blog-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 20px;
}
.search-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.search-bar input {
  width: 50%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.search-bar button {
  padding: 10px 15px;
  background: none;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
}
/* Shared styles untuk tombol dan link */
.filter-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.filter-item {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 20px;
  background-color: #f1f1f1;
  color: #474747;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-item:hover {
  background-color: #e0e0e0;
}

.filter-item.active {
  background-color: #ff5003;
  color: #ffffff;
}
.logo a {
    text-decoration: none;
}












.highlight-content {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.highlight-content img {
  width: 50%;
  border-radius: 8px;
}
.highlight-text {
  flex: 1;
}
.highlight-text h2 {
  font-size: 1.5rem;
}
.highlight-meta {
  margin-top: 10px;
  color: #999;
  font-size: 0.9rem;
}






.blog-layout {
  padding: 60px 0;
  background: #f9f9f9;
}

.layout-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.articles-area {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.blog-card img {
  width: 100%;
  height: auto;
}

.blog-info {
  padding: 15px;
}

.blog-info h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #222;
}

.blog-info p {
  font-size: 0.9rem;
  color: #555;
}

.blog-info a {
  margin-top: auto;
  display: inline-block;
  color: #ff6600;
  font-weight: 500;
  font-size: 0.8rem;
}

.sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Archive Widget */
.archive-widget {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.archive-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.archive-header h3 {
  font-size: 1.1rem;
}

.year-toggle {
  background: none;
  border: 1px solid #ff6600;
  color: #ff6600;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-weight: 500;
  margin-bottom: 10px;
}

.year-toggle.active,
.year-toggle:hover {
  background: #ff6600;
  color: white;
}


.month-list {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.month-list li {
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.month-list li.active {
  background-color: #e65100; /* Orange gelap */
  color: white;
  border-radius: 5px;
  padding: 4px 8px;
  cursor: pointer;
}


.count {
  background: #ff6600;
  color: #fff;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
}

/* Tags Widget */
.tags-widget {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.tags-widget h3{
  margin-top: -23px;
  margin-bottom: 20px;
  margin-left: 25px;
}
.tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 8px 15px;
  background: #f0f0f0;
  border-radius: 30px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tag.active,
.tag:hover {
  background: #ff6600;
  color: white;
}




@media (max-width: 1024px) {

}


@media (max-width: 768px) {

}

@media (max-width: 480px) {
.blog-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.blog-subtitle {
  font-size: 0.9rem;
}
.filter-item {
    padding: 5px 10px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid transparent;
    border-radius: 20px;
    background-color: #f1f1f1;
    color: #474747;
    cursor: pointer;
    transition: all 0.3s ease;
}
.highlight-content {
    gap: 10px;
    margin-top: 10px;
}
.highlight-content img {
    width: 40%;
    border-radius: 8px;
}
.highlight-text h2 {
    font-size: 1rem;
}
.highlight-text p {
    font-size: 0.7rem;
}
.highlight-meta {
    margin-top: 10px;
    color: #999;
    font-size: 0.8rem;
}


.articles-area {
    flex: 1;
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}
.blog-info h3 {
    font-size: 0.8rem;
    margin-bottom: 10px;
    color: #222;
    width: 180px;
}
.blog-info p {
    font-size: 0.7rem;
    color: #555;
}
.blog-info a {
    font-size: 0.7rem;
    color: #555;
}



.archive-widget {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.archive-header i {
    font-size: 0.8rem;
}
.archive-header h3 {
    font-size: 0.8rem;
}
.year-toggle {
    background: none;
    border: 1px solid #ff6600;
    color: #ff6600;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    width: 90%;
    text-align: left;
    font-weight: 500;
    font-size: 0.6rem;
    margin-bottom: 5px;
}
.month-list {
    list-style: none;
    padding-left: 0;
    margin-top: 5px;
}
.month-list li {
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    font-size: 0.6rem;
    margin-left: 15px;
}
.count {
    background: #ff6600;
    color: #fff;
    padding: 2px 6px;
    border-radius: 20px;
    font-size: 0.4rem;
    margin-right: 15px;
}
.tags-widget h3{
  font-size: 0.9rem;
  width: 50px;
  margin-top: -20px;
  margin-left: 20px;
  margin-bottom: 10px;
}
.tag {
    padding: 4px 9px;
    background: #f0f0f0;
    border-radius: 30px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
}



@media (max-width: 425px) {
.highlight-content img {
  width: 50%;
  border-radius: 8px;
}
.highlight-text h2,
.blog-info h3 {
  font-size: 0.7rem;
}
.highlight-text p,
.blog-info p {
  font-size: 0.65rem;
}
.highlight-meta {
  margin-top: 10px;
  color: #999;
  font-size: 0.65rem;
}
.blog-info a {
  font-size: 0.55rem;
}
}