.blog-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Category Label */
.category-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #1a1a2e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  margin-top: 3px;
}

/* Section Title */
.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 30px;
}

/* ==================== */
/* HERO SECTION */
/* ==================== */
.hero-section {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
}

.hero-main {
  flex: 1;
}
.hero-main a:hover{
  text-decoration: underline;
}

.hero-featured {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.hero-image {
  width: 200px;
  height: 120px;
  background-color: #d9d9d9;
  background-size: contain;
  background-repeat: round;
  border-radius: 8px;
  flex-shrink: 0;
}

.hero-content {
  flex: 1;
}

.hero-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 5px;
  line-height: 1.3;
}

.hero-excerpt {
  font-size: 15px;
  color: #666;
  line-height: 1.4;
}

/* Hero Small Cards */
.hero-small-cards {
  display: flex;
  gap: 20px;
}

.small-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.small-card-image {
  width: 100%;
  height: 100px;
  background-color: #d9d9d9;
  background-size: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.small-card-text {
  font-size: 14px;
  color: #1a1a2e;
  line-height: 1.4;
}

/* Hero Sidebar */
.hero-sidebar {
  width: 320px;
  flex-shrink: 0;
}

.sidebar-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1a1a2e;
}

.sidebar-card {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.sidebar-card a:hover{
    text-decoration: underline;
}

.sidebar-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar-card-image {
  width: 70px;
  height: auto;
  background-color: #d9d9d9;
  border-radius: 6px;
  flex-shrink: 0;
}

.sidebar-card-image img {
    border-radius: 6px;
    height: 45px;
}

.sidebar-card-link{
    display:flex;
    gap:12px;
    align-items: center;
}

.sidebar-card-content {
  flex: 1;
}

.sidebar-card-text {
  font-size: 14px;
  color: #1a1a2e;
  line-height: 1.4;
}

/* ==================== */
/* GUIDES SECTION */
/* ==================== */
.guides-section {
  margin-bottom: 60px;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}

.guide-card {
  display: flex;
  flex-direction: column;
}

.guide-image {
  width: 100%;
  height: 160px;
  background-color: #d9d9d9;
  background-size: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.guide-text {
  font-size: 14px;
  color: #1a1a2e;
  line-height: 1.4;
}
.guide-text a:hover{
  text-decoration: underline;
}

/* See More Button */
.see-more-wrapper {
  text-align: center;
}

.btn-see-more {
  display: inline-block;
  padding: 14px 40px;
  background-color: #1a1a2e;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.btn-see-more:hover {
  background-color: #2d2d4a;
}

/* ==================== */
/* PICKS SECTION */
/* ==================== */
.picks-section {
  margin-bottom: 60px;
}

.picks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.pick-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pick-logo {
  padding: 20px 0;
  justify-content: center;
  display: flex;
}
.pick-category{
  font-size: 14px;
  padding-top: 10px;
}

.pick-logo img {
    height: 70px;
}

.pick-brand {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
}

.pick-content-top {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pick-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.btn-visit {
  display: block;
  width: 100%;
  padding: 10px 20px;
  background-color: #00b894;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.btn-visit:hover {
  background-color: #00a383;
}

.btn-review {
  display: block;
  width: 100%;
  padding: 10px 20px;
  background-color: #ffffff;
  color: #00b894;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid #00b894;
  transition: background-color 0.2s ease;
}

.btn-review:hover {
  background-color: #f0fdf9;
}

.btn-phone {
  display: block;
  width: 100%;
  padding: 10px 20px;
  background-color: #ffffff;
  color: #00b894;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid #00b894;
  transition: background-color 0.2s ease;
}

.btn-phone:hover {
  background-color: #f0fdf9;
}

/* ==================== */
/* CATEGORIES SECTION */
/* ==================== */
.categories-section {
  margin-bottom: 40px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 30px;
}

.category-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  text-decoration: none;
  color: #1a1a2e;
  transition: color 0.2s ease;
}

.category-item:hover {
  color: #00b894;
}

.category-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: #f0f9ff;
  border-radius: 8px;
  flex-shrink: 0;
}

.category-name {
  font-size: 14px;
  font-weight: 500;
}


.recent-categories-section {
  padding: 0.5rem;
  background: #f9f9f9;
  margin-bottom: 48px;
}

.recent-categories-section .section-title {    
  font-size: 28px;
  margin-bottom: 1.5rem;
}

.recent-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.recent-category-item {
    background: #fff;
    padding: 0.5rem;
    border-radius: 0.3rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.recent-category-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.recent-category-item .category-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.3rem;
}

.recent-category-item .category-link {
    text-decoration: none;
    font-size: 14px;
    color: #222;
}

.recent-category-item .category-link:hover {
    color: #0073e6;
}

/* ==================== */
/* RESPONSIVE - TABLET */
/* ==================== */
@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
  }
  
  .hero-sidebar {
    width: 100%;
  }
  
  .picks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==================== */
/* RESPONSIVE - MOBILE */
/* ==================== */
@media (max-width: 820px) {
  /* Sidebar Mobile */
  .sidebar-card {
    flex-direction: column;
  }
  
  .sidebar-card-image {
    width: 100%;
    height: 120px;
    background-color: transparent;
  }

  .sidebar-card-image img {
    height: 100%;
  }

  .sidebar-card-link {
    display: block;
  }

  .recent-categories-section .section-title {    
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .blog-container {
    padding: 20px 15px;
  }
  
  .section-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  /* Hero Mobile */
  .hero-featured {
    flex-direction: column;
  }
  
  .hero-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  .hero-small-cards {
    flex-direction: column;
  }
  
  .small-card-image {
    height: 120px;
  }
  

  
  /* Guides Mobile */
  .guides-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .guide-image {
    height: 180px;
  }
  
  /* Picks Mobile */
  .picks-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .pick-card {
    padding: 20px 15px;        
    width: 70%;
    margin: auto;
  }
  
  /* Categories Mobile */
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .category-item {
    padding: 8px 0;
  }
}