/* Reset */
* {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #111;
}

/* Section Container */
.pos-hero {
  padding: 60px 40px;
}
.pos-container {
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

/* Left Side */
.pos-left {
  flex: 1;
  position: relative;
}
.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
.image-wrapper img {
  width: 590px;
  height: 370px;
  display: block;
  object-fit: cover;
}

/* Floating Cards */
.card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  width: 150px;
}
.card p {
  font-size: 12px;
  color: #444;
}
.card h3 {
  font-size: 20px;
  margin-top: 4px;
}
.bar {
  height: 6px;
  border-radius: 4px;
  margin-top: 8px;
}
.bar.blue {
  background: #d8ff33;
}
.bar.orange {
  background: #ff7a00;
}
.bar.red {
  background: #ff3b30;
}

/* Card positions */
.card.stock {
  top: 10%;
  left: 60%;
}
.card.out {
  top: 45%;
  left: 70%;
  transform: rotate(-5deg);
}
.card.expired {
  bottom: 10%;
  left: 30%;
  transform: rotate(2deg);
}

/* Right Side */
.pos-right {
  flex: 1;
}
.label {
  background: #191919;
  color: #d8ff33;
  display: inline-block;
  padding: 4px 12px;
  font-size: 13px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.label span {
  color: #fff;
  margin-left: 8px;
}
.pos-right h1 {
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: 16px;
}
.pos-right p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 25px;
  text-align: justify;
}
.pos-right a {
  font-size: 1rem;
  color: #657b05;
  text-decoration: none;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
  .pos-container {
    flex-direction: column;
  }
  .card {
    width: 130px;
  }
  .pos-right h1 {
    font-size: 2rem;
  }
}





/* Section */
.articles-section {
  padding: 60px 50px 20px 50px;
  margin: 0 auto;
}

/* Header */
.articles-header {
  text-align: left;
  margin-bottom: 40px;
}
.articles-header h2 {
  font-size: 2rem;
  font-weight: 600;
}
.articles-header p {
  color: #666;
  margin-top: 6px;
  font-size: 1rem;
}

/* Grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 50px;
}

/* Card */
.article-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.article-card img {
  width: 100%;
  /* height: 180px; */
  object-fit: cover;
}

/* Meta */
.article-meta {
  display: flex;
  justify-content: space-between;
  padding: 26px 20px 0;
  font-size: 0.9rem;
}
.article-meta .author {
  font-weight: 600;
  color: #e4572e;
}
.article-meta .author.orange {
  color: #f28705;
}
.article-meta .date {
  color: #999;
  margin-bottom: 10px;
}

/* Text */
.article-card h3 {
  font-size: 1.3rem;
  font-weight: 500;
  padding: 8px 20px 0;
  line-height: 1.4;
}
.article-card p {
  padding: 8px 20px;
  font-size: 0.95rem;
  color: #555;
  line-height: 25px;
}

/* Link */
.article-card a {
  padding: 8px 20px 20px;
  font-weight: 500;
  color: #2a5bd7;
  text-decoration: none;
  font-size: 0.95rem;
}
.article-card a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .articles-header h2 {
    font-size: 1.5rem;
  }
  .articles-header p {
    font-size: 0.95rem;
  }
}




.blogs-header-section {
  background-color: #000;
  padding: 80px 20px 40px;
  text-align: center;
  background-image: url('../images/world_map_3.png');
  background-position: center;
}

.blogs-header-container {
  padding: 40px 70px;
  margin: 0 auto;

  background-position: center;
  background-repeat: no-repeat;
}

.blogs-header-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: 1px;
}

/* .blogs-header-breadcrumb {
  font-size: 18px;
  font-weight: 500;
  color: #ccc;
} */

.breadcrumb-active {
  color: #a5ff3f;
}

.blog_label{
  width: 190px !important;
  font-weight: 500 !important;
  letter-spacing: 1px;
}

.blog_label h2{
  margin: 0 auto;
}