body.feed-page {
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  font-family: system-ui, -apple-system, sans-serif;
}
#feed-root {
  max-width: 600px;
  margin: auto;
  padding: 10px;
}
.feed-header {
  height: 60px; /* fixed, not vh */
  background: #fff;
  border-bottom: 1px solid #eee;

  display: flex;
  align-items: center;
  justify-content: center;

  position: sticky;
  top: 0;
  z-index: 1000;
}



/* menu button */
.menu-toggle {
  position: absolute;
  left: 12px;

  background: #e74c3c;
  color: #fff;
  border: none;

  width: 36px;
  height: 36px;

  border-radius: 6px;
  font-size: 18px;
}

/* Sidebar */
.feed-sidebar {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #fff;
  z-index: 2000;
  transition: left 0.3s ease;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.feed-sidebar.active {
  left: 0;
}

/* Content */
.sidebar-content {
  padding: 20px;
}

.sidebar-content a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

/* Close button */
.close-menu {
  background: none;
  border: none;
  font-size: 20px;
  margin-bottom: 20px;
}

/* Overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1500;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* brand center */
.feed-brand {
  text-align: center;
  line-height: 1.1;
}

/* title */
.feed-brand h1 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}

/* subtitle */
.feed-brand span {
  font-size: 11px;
  color: #999;
}
.wpf-feed-container {
    max-width: 600px;
    margin: auto;
    padding: 12px;
}
.highlight-main-title {
  font-size: 30px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;

  line-height: 1.3;
  letter-spacing: -0.3px;

  margin: 16px 12px 12px;
  padding: 0 4px;

  color: #111;

  /* better readability */
  word-break: break-word;
}
.wpf-card {
    background: #fff;
    margin-bottom: 16px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}

.wpf-card:hover {
    transform: translateY(-2px);
}
.wpf-card.highlight {
  
}
.wpf-image {
    width: 100%;
    height: auto;
    display: block;
}

.wpf-content {
    padding: 12px;
}

.wpf-content h3 {
    font-size: 17px;
    margin-bottom: 6px;
    line-height: 1.3;
}

.wpf-content p {
    font-size: 14px;
    color: #666;
}

.read-more-btn {
  width: 100%;
  background: linear-gradient(45deg, #ff3b2f, #ff6a00);
  color: #fff;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  margin-top: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  animation: pulseBtn 1.5s infinite;
}

.read-more-btn:hover {
  transform: scale(1.03);
}

@keyframes pulseBtn {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}



.feed-footer {
  text-align: center;
  padding: 16px 10px;
  font-size: 13px;
  color: #666;

  background: #f8f8f8;
  border-top: 1px solid #eee;

  margin-top: 20px;
}
.clickable-card {
  cursor: pointer;
}
.ad-card {
  margin: 16px 10px;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  min-height: 100px; /* 👈 FIX */
}
.highlight-ad {
  margin: 15px 0;
  text-align: center;
  min-height: 90px;
}
.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.recipe-notice {
  background: #fff3cd;
  color: #856404;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  margin: 12px 0;
  font-size: 14px;
  animation: pulseText 1.5s infinite;
}

.recipe-notice::after {
  content: " ↓↓↓";
  display: block;
  font-size: 18px;
}

@keyframes pulseText {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}
@media (max-width: 480px) {
  .highlight-main-title {
    font-size: 20px;
    margin: 12px 10px;
  }
}
