/*
=====================================
 CATTLEMANIA NEWS WIDGETS
 COMMAND CENTER THEME
 MASTER LAYOUT COMPATIBLE
=====================================
*/

/* =====================================
   NEWS GRID
===================================== */

.news-widget-grid {
  display: grid;

  grid-template-columns:
    minmax(400px, 2fr)
    minmax(280px, 1fr);

  gap: 20px;

  width: 100%;

  margin-bottom: 20px;
}

/* =====================================
   HEADER WIDGET
===================================== */

.news-header-widget h2 {
  color: white;

  font-size: 24px;

  font-weight: 900;

  margin: 0;
}

.news-header-widget p {
  color: #94a3b8;

  line-height: 1.6;

  font-size: 15px;
}

/* =====================================
   NEWS FEED ITEMS
===================================== */

.news-item {
  background: linear-gradient(145deg, #111827, #0f172a);

  padding: 18px;

  border-radius: 14px;

  margin-bottom: 12px;

  border: 1px solid rgba(56, 189, 248, 0.15);

  transition: 0.2s;
}

.news-item:hover {
  transform: translateY(-3px);

  border-color: #38bdf8;
}

/* =====================================
   NEWS TEXT
===================================== */

.news-description {
  color: #e2e8f0;

  font-size: 15px;

  line-height: 1.6;
}

.news-date {
  margin-top: 12px;

  color: #94a3b8;

  font-size: 12px;
}

/* =====================================
   NEWS ACTION BUTTONS
===================================== */

.news-links {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-top: 15px;
}

.news-links a {
  background: linear-gradient(90deg, #2563eb, #38bdf8);

  color: white;

  padding: 8px 14px;

  border-radius: 10px;

  text-decoration: none;

  font-size: 13px;

  font-weight: 700;

  transition: 0.2s;
}

.news-links a:hover {
  background: #dc2626;

  transform: translateY(-2px);
}

/* =====================================
   ADMIN NEWS UPDATES
===================================== */

.news-admin-item {
  background: linear-gradient(145deg, #0b132b, #111827);

  padding: 15px;

  border-radius: 12px;

  margin-bottom: 12px;

  border-left: 4px solid #38bdf8;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.2s;
}

.news-admin-item:hover {
  border-left-color: #dc2626;

  transform: translateX(3px);
}

.news-admin-title {
  color: white;

  font-size: 16px;

  font-weight: 800;
}

.news-admin-message {
  color: #cbd5e1;

  margin-top: 10px;

  line-height: 1.6;

  font-size: 14px;
}

.news-admin-date {
  color: #94a3b8;

  font-size: 12px;

  margin-top: 10px;
}

/* =====================================
   TRENDING WIDGET
===================================== */

.trending-widget .widget-header {
  background: linear-gradient(90deg, #172554, #0f172a);
}

.trend-box {
  background: linear-gradient(145deg, #111827, #0b132b);

  padding: 15px;

  border-radius: 12px;

  margin-bottom: 12px;

  border: 1px solid rgba(56, 189, 248, 0.12);

  border-left: 3px solid #38bdf8;

  transition: 0.2s;
}

.trend-box:hover {
  border-left-color: #dc2626;

  transform: translateX(4px);
}

.trend-box h4 {
  color: white;

  font-size: 16px;

  font-weight: 800;

  margin-bottom: 8px;
}

.trend-box p {
  color: #94a3b8;

  font-size: 13px;

  line-height: 1.5;
}

/* =====================================
   MOBILE
===================================== */

@media (max-width: 900px) {
  .news-widget-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .news-links {
    flex-direction: column;
  }

  .news-links a {
    text-align: center;
  }
}
