
/* CSS to Decorate 5 IMAGE BOX*/
body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  padding: 30px;
  background: #fafafa;
  color: #222;
}

/* Header + Description */
.header {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.description {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* Main Box Layout */
.box {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Left Large Image */
.left-large {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.left-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*
.left-large .title {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

*/
.left-large .title {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  width: max-content;
  max-width: 90%;
}


/* Right Grid (4 images) */
.right-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.grid-item {
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.grid-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.grid-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.grid-item .title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.grid-item a {
  color: #0078d4;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}

.grid-item a:hover {
  text-decoration: underline;
}
.new-flag1 {
  color: #d60000;
  font-weight: 700;
}

.new-flag2 {
  color: #f0b106;
  font-weight: 800;
  text-align: center;
}

.title-left-center {
  text-align: center;
}
