* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f9f9;
  color: #333;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  color: white;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.logo span {
  color: #f44336;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #f44336;
}

/* Hero Section */
.hero {
  margin: 2rem auto;
  width: 90%;
  max-width: 1200px;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero img {
  width: 100%;
  max-width: 60%;
  border-radius: 8px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-text p {
  color: #555;
  margin-bottom: 1rem;
}

.hero-text button {
  background: #f44336;
  color: white;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
}

.hero-text button:hover {
  background: #d32f2f;
}

/* Main Grid */
main {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 2rem auto;
  gap: 2rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  flex: 3;
}

.news-grid article {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

.news-grid img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 0.8rem;
}

.news-grid h2 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.sidebar {
  flex: 1;
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sidebar h3 {
  margin-bottom: 1rem;
  border-bottom: 2px solid #f44336;
  padding-bottom: 0.5rem;
}

.sidebar ul {
  list-style: none;
}

.sidebar a {
  color: #333;
  text-decoration: none;
  display: block;
  margin-bottom: 0.8rem;
}

.sidebar a:hover {
  color: #f44336;
}

/* Footer */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Business Section */
.business-section {
  background: white;
  width: 90%;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.business-section h2 {
  border-left: 5px solid #f44336;
  padding-left: 0.5rem;
  margin-bottom: 1rem;
}

.business-article img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.business-article h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.business-article p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.read-more {
  color: #f44336;
  text-decoration: none;
  font-weight: bold;
}

.read-more:hover {
  text-decoration: underline;
}

/*  Business Section */
/* Full Article Page */
.article-page {
  width: 90%;
  max-width: 900px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.article-page h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.article-date {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.article-page img {
  width: 100%;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.article-page p {
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: #333;
}

.back-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: #f44336;
  text-decoration: none;
  font-weight: bold;
}
.back-link:hover {
  text-decoration: underline;
}

.back-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: #f44336;
  text-decoration: none;
  font-weight: bold;
}
.back-link:hover {
  text-decoration: underline;
}

/* footer */

/* ====== FOOTER ====== */
.site-footer {
  background: #111;
  color: #eee;
  padding: 2rem 0;
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-left h3 {
  font-size: 1.5rem;
  color: #fff;
}

.footer-left span {
  color: #f44336;
}

.footer-left p {
  margin-top: 0.5rem;
  color: #bbb;
}

.footer-center,
.footer-right {
  min-width: 200px;
  margin-top: 1rem;
}

.footer-center h4,
.footer-right h4 {
  color: #f44336;
  margin-bottom: 0.5rem;
}

.footer-center a,
.footer-right a {
  color: #eee;
  text-decoration: none;
}

.footer-center a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  color: #777;
  font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* sport.html */
/* --- Article Page Layout --- */
.article-page {
  width: 90%;
  max-width: 900px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.article-page article {
  margin-bottom: 3rem;
}

.article-page h1 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: #111;
}

.article-date {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.article-page img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.article-page p {
  line-height: 1.7;
  color: #333;
  margin-bottom: 1rem;
}
