/*
Theme Name: AWB Travel News Final
Author: AWB Travels and Tours Ltd
Description: Professional red/white theme inspired by Linda Ikeji Blog
Version: 3.2
*/

body {
  font-family: 'Georgia', serif;
  background: #fff;
  margin: 0;
  padding: 0;
  color: #222;
}

a {
  color: #b80000;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.site-header {
  background: #b80000;
  padding: 20px 10px;
  text-align: center;
  color: white;
}
.site-header h1 {
  font-size: 2.5rem;
  margin: 0;
}
.site-header p {
  font-size: 1.2rem;
  margin: 8px 0 0;
}

/* Posts Grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 10px;
  padding: 10px;
}
.post-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ccc;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.post-card .content {
  padding: 20px;
}
.post-card h2 {
  font-size: 1.3rem;
  color: #b80000;
}
.post-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}
.read-more {
  margin-top: 12px;
  display: inline-block;
  background: #b80000;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* Floating WhatsApp Button */
.whatsapp-button {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #b80000;
  color: #fff;
  padding: 10px 18px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  font-weight: bold;
  z-index: 9999;
  font-size: 13px;
}

/* ✅ Sticky Floating Follow Buttons */
.awb-follow-buttons {
  position: fixed;
  top: 45%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 9999;
}
.awb-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #b80000;
  color: white;
  padding: 6px 12px;
  font-size: 12px;
  text-decoration: none;
  border-radius: 0 4px 4px 0;
  transition: background 0.3s ease;
}
.awb-btn img {
  width: 14px;
  height: 14px;
}
.awb-btn:hover {
  opacity: 0.9;
}
.awb-btn.fb { background: #3b5998; }
.awb-btn.ig { background: #e1306c; }
.awb-btn.tw { background: #1da1f2; }
.awb-btn.in { background: #0077b5; }

/* ✅ Equal-height cards & fix background issue */
.posts-grid {
  align-items: stretch;
}
.post-card {
  display: flex;
  flex-direction: column;
}
.post-card .content {
  flex: 1 1 auto;
}