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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #f9f9f9;
  text-align: left;
}

/* Header */
.header-container {
  display: flex;
  justify-content: center; 
  align-items: center;     
  padding: 10px 100px;
}

/* Logo + Hashtag */
.logo-hashtag {
  display: flex;
  align-items: center;
  gap: 300px; 
}


/* Logo */
#logo img {
  height: 100px;

}

/* Hashtag */
#hashtag ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#hashtag li {
  font-size: 14px;
  font-weight: bold;
  background: #fff;
  padding: 5px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
}

#hashtag span {
  color: #f1c40f;
  margin-right: 5px;
}

/* Menu */
#menu {
  width: 100%;
  background: linear-gradient(to top, #f9e79f, #b9770e);
  padding: 12px 0;
  text-align: center;
}

#menu ul {
  display: inline-flex;
  list-style: none;
  gap: 120px; 
}

#menu ul li a {
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  transition: 0.3s;
}

#menu ul li a:hover {
  color: #333;
}

/* Main content */
main.container {
  display: flex;
  gap: 20px;
  width: 1100px;
  margin: 20px auto;
}

/* Content left / right */
.content-left {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 25px; 
}

.content-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Rows & columns */
.row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.column-1 {
  flex: 1;
}

.column-2 {
  flex: 2;
}

.column-3 {
  flex: 3;
}

/* Hình ảnh + chữ */
.column-1 img,
.column-2 img,
.column-3 img,
.vertical-article img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  display: block;
  transition: transform 0.3s;
}

.column-1 img:hover,
.column-2 img:hover,
.column-3 img:hover,
.vertical-article img:hover {
  transform: scale(1.05);
}

.column-1 p,
.column-2 p,
.column-3 p,
.vertical-article p {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-align: left;
}

.p1 {
  font-weight: 700;
  margin-bottom: 3px;
}

/* Vertical articles */
.content-left .vertical-articles {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-left .vertical-article {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.content-left .vertical-article img {
  width: 150px;
  flex-shrink: 0;
  border-radius: 6px;
}

.content-left .vertical-article .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 5px; 
}
/* Row 1*/
.content-left .row:first-child img {
  height: 200px;      
  width: 100%;      
  object-fit: cover;  
  border-radius: 6px;
}



.content-right .horizontal-article {
  display: flex;
  align-items: center; 
  gap: 15px;        
}

.content-right .horizontal-article img {
  width: 110px;        
  height: auto;
  flex-shrink: 0;     
}

.content-right .horizontal-article .text {
  flex: 1;             
}

/* Section title */
.section-title {
  font-size: 18px;
  font-weight: bold;
  border-bottom: 2px solid #f1c40f;
  padding-bottom: 5px;
  margin: 15px 0;
}
.latest-news-title {
  display: flex;
  align-items: center; 
  gap: 8px;           
  font-weight: bold;
  font-size: 18px;
}

.latest-news-title .icon-yellow {
  width: 16px;      
  height: 20px;     
  background-color: #f1c40f;
  border-radius: 0; 
  flex-shrink: 0;  
}


/* Footer */
.footer-container {
  background-color: #000;
  color: #fff;
  padding: 50px 20px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;      
  gap: 30px;        
  max-width: 1100px;
  margin: 0 auto;
  justify-content: flex-start;
}

.footer-column {
  flex: 1;            
  min-width: 200px;  
}

.footer-column img {
  height: 100px;
  width: auto;           
  margin-bottom: 20px;
}

.footer-column p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
