/* ============================================= */
/* NEWS PAGE - SEPARATE STYLES                   */
/* ============================================= */

/* ===== PAGE HEADER ===== */
.news-page-header {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-dark) 100%
  );
  padding: 50px 0 45px;
  text-align: center;
  border-bottom: 4px solid var(--secondary-orange);
  position: relative;
}

.news-page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/pattern.png") repeat;
  opacity: 0.05;
}

.news-header-content {
  position: relative;
  z-index: 1;
}

.news-header-content h1 {
  font-size: 2.8rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.news-header-content h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--secondary-orange);
  margin: 12px auto 0;
  border-radius: 2px;
}

.news-header-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 15px auto 0;
}

/* ===== TWO COLUMN LAYOUT ===== */
.news-page-body {
  padding: 40px 0 60px;
  background: var(--bg-light);
}

.news-two-column {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 35px;
  align-items: start;
}

/* ===== LEFT COLUMN ===== */
.news-left-col {
  background: var(--white);
  border-radius: 12px;
  padding: 30px 32px;
  box-shadow: var(--shadow-light);
}

/* ===== FEATURED NEWS ===== */
.featured-news {
  background: var(--bg-light);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 35px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.featured-news-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
}

.featured-image {
  position: relative;
  height: 100%;
  min-height: 220px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--secondary-orange);
  color: var(--white);
  padding: 3px 14px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-text {
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-text .news-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.featured-text .news-meta i {
  color: var(--secondary-orange);
  margin-right: 4px;
  font-size: 0.8rem;
}

.featured-text h2 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.featured-text p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.read-full {
  color: var(--secondary-orange);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.read-full:hover {
  color: var(--primary-blue);
}

/* ===== META TAGS ===== */
.meta-tag {
  padding: 2px 12px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.meta-tag.announcement {
  background: rgba(249, 115, 22, 0.12);
  color: var(--secondary-orange);
}

.meta-tag.advisory {
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
}

.meta-tag.event {
  background: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
}

.meta-tag.award {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

/* ===== NEWS LIST HEADER ===== */
.news-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.news-list-header h3 {
  font-size: 1.2rem;
  color: var(--primary-blue);
  font-weight: 700;
}

.filter-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.filter-select {
  padding: 6px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.85rem;
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.filter-select:focus {
  outline: none;
  border-color: var(--secondary-orange);
}

/* ===== NEWS ITEMS ===== */
.news-items-list {
  display: flex;
  flex-direction: column;
}

.news-item {
  padding: 5px 0;
}

.news-item-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 5px 0;
}

.news-thumb {
  position: relative;
  height: 130px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.news-item:hover .news-thumb img {
  transform: scale(1.04);
}

.thumb-date {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--secondary-orange);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 8px;
  text-align: center;
  line-height: 1.1;
  min-width: 38px;
}

.thumb-date .td-day {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.thumb-date .td-month {
  display: block;
  font-size: 0.55rem;
  text-transform: uppercase;
  font-weight: 600;
}

.news-item-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-item-text .news-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 6px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.news-item-text .news-meta i {
  color: var(--secondary-orange);
  margin-right: 3px;
  font-size: 0.75rem;
}

.news-item-text h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.news-item-text h3 a {
  color: var(--primary-blue);
  transition: var(--transition);
}

.news-item-text h3 a:hover {
  color: var(--secondary-orange);
}

.news-item-text p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  color: var(--secondary-orange);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--primary-blue);
  gap: 8px;
}

/* ===== DIVIDER ===== */
.news-divider {
  height: 1px;
  background: linear-gradient(to right, var(--secondary-orange), transparent);
  margin: 18px 0 18px 0;
  opacity: 0.15;
}

.news-item:last-child .news-divider {
  display: none;
}

/* ===== LOAD MORE ===== */
.load-more-wrap {
  text-align: center;
  padding-top: 10px;
}

.load-more-btn {
  background: transparent;
  border: 2px solid var(--secondary-orange);
  color: var(--secondary-orange);
  padding: 10px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.load-more-btn:hover {
  background: var(--secondary-orange);
  color: var(--white);
}

/* ============================================= */
/* RIGHT COLUMN - SIDEBAR                       */
/* ============================================= */

.news-right-col {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-widget {
  background: var(--white);
  border-radius: 12px;
  padding: 22px 24px;
  box-shadow: var(--shadow-light);
}

.sidebar-widget h3 {
  font-size: 1rem;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-widget h3::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 18px;
  background: var(--secondary-orange);
  border-radius: 2px;
}

/* Search */
.sidebar-search {
  display: flex;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.sidebar-search:focus-within {
  border-color: var(--secondary-orange);
}

.sidebar-search input {
  flex: 1;
  padding: 9px 14px;
  border: none;
  font-size: 0.9rem;
  outline: none;
}

.sidebar-search button {
  background: var(--secondary-orange);
  color: var(--white);
  border: none;
  padding: 0 16px;
  cursor: pointer;
  transition: var(--transition);
}

.sidebar-search button:hover {
  background: var(--primary-blue);
}

/* Announcements */
.announce-list li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.announce-list li:last-child {
  border-bottom: none;
}

.announce-list li a {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ann-badge {
  display: inline-block;
  padding: 1px 10px;
  border-radius: 50px;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
  background: #e5e7eb;
  color: #6b7280;
}

.ann-badge.urgent {
  background: #fee2e2;
  color: #dc2626;
}

.ann-badge.important {
  background: #fef3c7;
  color: #d97706;
}

.ann-badge.new {
  background: #dbeafe;
  color: #2563eb;
}

.ann-title {
  font-weight: 600;
  color: var(--text-body);
  font-size: 0.9rem;
  transition: var(--transition);
}

.announce-list li a:hover .ann-title {
  color: var(--secondary-orange);
}

.ann-date {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Events */
.event-list li {
  display: flex;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.event-list li:last-child {
  border-bottom: none;
}

.event-date-box {
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 8px;
  text-align: center;
  padding: 4px 10px;
  min-width: 40px;
  flex-shrink: 0;
}

.event-date-box .ev-day {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
}

.event-date-box .ev-month {
  display: block;
  font-size: 0.5rem;
  text-transform: uppercase;
  font-weight: 600;
}

.event-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1px;
}

.event-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Downloads */
.download-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: var(--text-body);
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.download-list li:last-child a {
  border-bottom: none;
}

.download-list li a i {
  color: var(--secondary-orange);
  font-size: 0.9rem;
  width: 18px;
}

.download-list li a:hover {
  color: var(--secondary-orange);
  padding-left: 4px;
}

/* Subscribe */
.subscribe-widget p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subscribe-form input {
  padding: 10px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--secondary-orange);
}

.btn-subscribe {
  background: var(--secondary-orange);
  color: var(--white);
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-subscribe:hover {
  background: var(--primary-blue);
}

/* ============================================= */
/* RESPONSIVE                                   */
/* ============================================= */

@media (max-width: 1024px) {
  .news-two-column {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .featured-news-inner {
    grid-template-columns: 1fr;
  }

  .featured-image {
    height: 200px;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .news-two-column {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .news-left-col {
    padding: 20px;
  }

  .news-header-content h1 {
    font-size: 2rem;
  }

  .news-item-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .news-thumb {
    height: 160px;
  }

  .featured-image {
    height: 180px;
  }

  .featured-text {
    padding: 18px 20px;
  }

  .featured-text h2 {
    font-size: 1.2rem;
  }

  .news-list-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-right-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .sidebar-widget {
    margin-bottom: 0;
  }

  .featured-text .news-meta {
    font-size: 0.78rem;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .news-left-col {
    padding: 15px;
  }

  .news-header-content h1 {
    font-size: 1.6rem;
  }

  .news-header-content p {
    font-size: 0.9rem;
  }

  .news-right-col {
    grid-template-columns: 1fr;
  }

  .featured-image {
    height: 150px;
  }

  .featured-text {
    padding: 14px 16px;
  }

  .featured-text h2 {
    font-size: 1rem;
  }

  .featured-text p {
    font-size: 0.9rem;
  }

  .news-thumb {
    height: 140px;
  }

  .news-item-text h3 {
    font-size: 0.95rem;
  }

  .news-item-text p {
    font-size: 0.85rem;
  }

  .news-item-text .news-meta {
    font-size: 0.75rem;
    gap: 10px;
  }

  .sidebar-widget {
    padding: 16px 18px;
  }

  .event-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .load-more-btn {
    padding: 8px 24px;
    font-size: 0.8rem;
  }
}

/* ============================================= */
/* NEWS DETAIL PAGE                            */
/* ============================================= */

/* ===== PAGE HEADER ===== */
.news-detail-header {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-dark) 100%
  );
  padding: 45px 0 40px;
  text-align: center;
  border-bottom: 4px solid var(--secondary-orange);
  position: relative;
}

.news-detail-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/pattern.png") repeat;
  opacity: 0.05;
}

.news-detail-header-content {
  position: relative;
  z-index: 1;
}

.news-detail-header-content h1 {
  font-size: 2.6rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.news-detail-header-content h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--secondary-orange);
  margin: 10px auto 0;
  border-radius: 2px;
}

.news-detail-header-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 12px auto 0;
}

/* ===== TWO COLUMN LAYOUT ===== */
.news-detail-body {
  padding: 35px 0 60px;
  background: var(--bg-light);
}

.news-detail-two-column {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 35px;
  align-items: start;
}

/* ===== LEFT COLUMN ===== */
.news-detail-left {
  background: var(--white);
  border-radius: 12px;
  padding: 30px 32px;
  box-shadow: var(--shadow-light);
}

/* ===== BREADCRUMB ===== */
.detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.85rem;
}

.detail-breadcrumb a {
  color: var(--text-muted);
  transition: var(--transition);
}

.detail-breadcrumb a:hover {
  color: var(--secondary-orange);
}

.detail-breadcrumb a i {
  margin-right: 4px;
  font-size: 0.8rem;
}

.bc-separator {
  color: var(--text-muted);
  opacity: 0.5;
}

.bc-current {
  color: var(--primary-blue);
  font-weight: 600;
}

/* ===== FEATURED IMAGE ===== */
.detail-featured-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 25px;
}

.detail-featured-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.detail-image-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
}

.detail-category {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
}

.detail-category.announcement {
  background: var(--secondary-orange);
}

.detail-category.advisory {
  background: #3b82f6;
}

.detail-category.event {
  background: #8b5cf6;
}

.detail-category.award {
  background: #10b981;
}

/* ===== CONTENT ===== */
.detail-content {
  padding: 0 2px;
}

.detail-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.detail-meta i {
  color: var(--secondary-orange);
  margin-right: 5px;
  font-size: 0.85rem;
}

.detail-meta-tag {
  padding: 2px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.detail-meta-tag.announcement {
  background: rgba(249, 115, 22, 0.12);
  color: var(--secondary-orange);
}

.detail-meta-tag.advisory {
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
}

.detail-meta-tag.event {
  background: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
}

.detail-meta-tag.award {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

.detail-title {
  font-size: 2rem;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.detail-body {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.9;
}

.detail-body p {
  margin-bottom: 18px;
}

.detail-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 18px;
}

.detail-body ul li {
  padding: 5px 0 5px 28px;
  position: relative;
}

.detail-body ul li::before {
  content: "›";
  position: absolute;
  left: 6px;
  color: var(--secondary-orange);
  font-size: 1.3rem;
  font-weight: 700;
}

.detail-body ul li strong {
  color: var(--primary-blue);
}

.detail-body strong {
  color: var(--primary-blue);
}

/* ===== SHARE SECTION ===== */
.detail-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 22px;
  margin-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.share-label {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.share-label i {
  color: var(--secondary-orange);
  margin-right: 6px;
}

.share-buttons {
  display: flex;
  gap: 8px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
  font-size: 0.85rem;
}

.share-btn:hover {
  transform: translateY(-3px);
}

.share-btn.fb {
  background: #1877f2;
}
.share-btn.tw {
  background: #1da1f2;
}
.share-btn.li {
  background: #0a66c2;
}
.share-btn.em {
  background: #6b7280;
}
.share-btn.pr {
  background: #4b5563;
}

/* ===== NAVIGATION ===== */
.detail-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 22px;
  margin-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.detail-navigation a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-blue);
  transition: var(--transition);
}

.detail-navigation a:hover {
  color: var(--secondary-orange);
}

.nav-back {
  color: var(--secondary-orange) !important;
}

.nav-back:hover {
  color: var(--primary-blue) !important;
}

/* ============================================= */
/* RIGHT COLUMN - SIDEBAR (same as news.php)     */
/* ============================================= */

.news-detail-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Recent News Widget */
.recent-list li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.recent-list li:last-child {
  border-bottom: none;
}

.recent-list li a {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.recent-title {
  font-weight: 600;
  color: var(--text-body);
  font-size: 0.9rem;
  transition: var(--transition);
}

.recent-list li a:hover .recent-title {
  color: var(--secondary-orange);
}

.recent-date {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Categories Widget */
.category-list li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.category-list li:last-child {
  border-bottom: none;
}

.category-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-body);
  font-size: 0.9rem;
  transition: var(--transition);
}

.category-list li a:hover {
  color: var(--secondary-orange);
}

.cat-count {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Links Widget */
.links-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: var(--text-body);
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.links-list li:last-child a {
  border-bottom: none;
}

.links-list li a i {
  color: var(--secondary-orange);
  font-size: 0.9rem;
  width: 18px;
}

.links-list li a:hover {
  color: var(--secondary-orange);
  padding-left: 4px;
}

/* ============================================= */
/* RESPONSIVE                                   */
/* ============================================= */

@media (max-width: 1024px) {
  .news-detail-two-column {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .news-detail-two-column {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .news-detail-left {
    padding: 20px;
  }

  .news-detail-header-content h1 {
    font-size: 2rem;
  }

  .detail-featured-image img {
    height: 220px;
  }

  .detail-title {
    font-size: 1.5rem;
  }

  .detail-body {
    font-size: 0.98rem;
  }

  .detail-navigation {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .detail-navigation a {
    width: 100%;
    justify-content: center;
  }

  .news-detail-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .detail-share {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .news-detail-left {
    padding: 15px;
  }

  .news-detail-header-content h1 {
    font-size: 1.6rem;
  }

  .news-detail-header-content p {
    font-size: 0.9rem;
  }

  .detail-featured-image img {
    height: 170px;
  }

  .detail-title {
    font-size: 1.2rem;
  }

  .detail-meta {
    font-size: 0.78rem;
    gap: 12px;
  }

  .detail-body {
    font-size: 0.92rem;
  }

  .detail-body ul li {
    padding: 4px 0 4px 22px;
    font-size: 0.92rem;
  }

  .news-detail-right {
    grid-template-columns: 1fr;
  }

  .share-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .detail-breadcrumb {
    font-size: 0.78rem;
  }

  .detail-navigation a {
    font-size: 0.82rem;
  }
}

/* ============================================= */
/* GALLERY SECTION                              */
/* ============================================= */

.detail-gallery {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.gallery-header h3 {
  font-size: 1.1rem;
  color: var(--primary-blue);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gallery-header h3 i {
  color: var(--secondary-orange);
}

.gallery-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg-light);
  padding: 4px 14px;
  border-radius: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 38, 71, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ============================================= */
/* GALLERY MODAL                                */
/* ============================================= */

.gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gallery-modal.active {
  display: flex;
}

.gallery-modal-content {
  background: var(--white);
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  max-height: 95vh;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.gallery-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: var(--primary-blue);
  color: var(--white);
  border-bottom: 3px solid var(--secondary-orange);
}

.gallery-modal-header h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gallery-modal-header h3 i {
  color: var(--secondary-orange);
}

.gallery-modal-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
  padding: 0 4px;
}

.gallery-modal-close:hover {
  color: var(--secondary-orange);
  transform: rotate(90deg);
}

.gallery-modal-body {
  padding: 20px;
  background: #1a1a2e;
}

/* Slider */
.gallery-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gallery-nav {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 18px;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition);
  z-index: 10;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-nav:hover {
  background: var(--secondary-orange);
  border-color: var(--secondary-orange);
}

.gallery-slide-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  max-height: 60vh;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-slide-image {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

/* Modal Footer */
.gallery-modal-footer {
  padding: 16px 20px 0;
  background: var(--white);
}

.gallery-thumbnails {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.gallery-thumbnails::-webkit-scrollbar {
  height: 4px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
  background: var(--bg-light);
  border-radius: 2px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
  background: var(--secondary-orange);
  border-radius: 2px;
}

.gallery-thumbnail {
  width: 70px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: var(--transition);
  flex-shrink: 0;
}

.gallery-thumbnail:hover {
  border-color: var(--secondary-orange);
}

.gallery-thumbnail.active {
  border-color: var(--secondary-orange);
}

.gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-counter {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 8px 0 4px;
}

/* ============================================= */
/* RESPONSIVE - GALLERY                         */
/* ============================================= */

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-modal-content {
    max-width: 100%;
    margin: 10px;
    border-radius: 12px;
  }

  .gallery-slide-container {
    min-height: 250px;
    max-height: 40vh;
  }

  .gallery-slide-image {
    max-height: 40vh;
  }

  .gallery-nav {
    width: 38px;
    height: 38px;
    padding: 10px 14px;
    font-size: 1.1rem;
  }

  .gallery-thumbnail {
    width: 55px;
    height: 40px;
  }

  .gallery-modal-header h3 {
    font-size: 0.85rem;
  }

  .gallery-modal-close {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gallery-slide-container {
    min-height: 180px;
    max-height: 30vh;
  }

  .gallery-slide-image {
    max-height: 30vh;
  }

  .gallery-nav {
    width: 32px;
    height: 32px;
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .gallery-thumbnail {
    width: 45px;
    height: 35px;
  }

  .gallery-modal-header {
    padding: 10px 16px;
  }

  .gallery-modal-body {
    padding: 12px;
  }

  .gallery-modal-footer {
    padding: 10px 14px 0;
  }

  .gallery-counter {
    font-size: 0.75rem;
  }
}

/* ============================================= */
/* ANNOUNCEMENT WITH IMAGE                       */
/* ============================================= */

.announcement-with-image {
    margin-bottom: 16px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.announcement-with-image:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.announcement-with-image a {
    display: block;
    text-decoration: none;
}

.announcement-image-thumb {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.announcement-image-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.announcement-with-image:hover .announcement-image-thumb img {
    transform: scale(1.03);
}

.announcement-image-thumb .ann-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.announcement-text {
    padding: 12px 14px 14px;
}

.announcement-text .ann-title {
    display: block;
    font-weight: 600;
    color: var(--text-body);
    font-size: 0.88rem;
    line-height: 1.4;
    transition: var(--transition);
    margin-bottom: 3px;
}

.announcement-with-image:hover .announcement-text .ann-title {
    color: var(--secondary-orange);
}

.announcement-text .ann-date {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ===== SIDEBAR WIDGET HEADER ===== */
.sidebar-widget h3 {
    font-size: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-widget h3 i {
    color: var(--secondary-orange);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .announcement-image-thumb {
        height: 110px;
    }

    .announcement-text .ann-title {
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .announcement-image-thumb {
        height: 90px;
    }

    .announcement-text {
        padding: 10px 12px 12px;
    }

    .announcement-text .ann-title {
        font-size: 0.78rem;
    }
}

/* ============================================= */
/* ANNOUNCEMENT WITH FULL IMAGE                  */
/* ============================================= */

.announcement-with-image {
    margin-bottom: 16px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.announcement-with-image:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.announcement-with-image a {
    display: block;
    text-decoration: none;
}

.announcement-image-full {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    cursor: pointer;
}

.announcement-image-full img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.announcement-with-image:hover .announcement-image-full img {
    transform: scale(1.02);
}

.announcement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 38, 71, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.announcement-with-image:hover .announcement-overlay {
    opacity: 1;
}

.announcement-overlay i {
    color: var(--white);
    font-size: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.announcement-overlay span {
    color: var(--white);
    font-size: 0.8rem;
    margin-top: 6px;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.announcement-text {
    padding: 12px 14px 14px;
}

.announcement-text .ann-badge {
    display: inline-block;
    padding: 2px 12px;
    border-radius: 4px;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.announcement-text .ann-badge.urgent {
    background: #fee2e2;
    color: #dc2626;
}

.announcement-text .ann-badge.important {
    background: #fef3c7;
    color: #d97706;
}

.announcement-text .ann-badge.new {
    background: #dbeafe;
    color: #2563eb;
}

.announcement-text .ann-title {
    display: block;
    font-weight: 600;
    color: var(--text-body);
    font-size: 0.88rem;
    line-height: 1.4;
    transition: var(--transition);
    margin-bottom: 3px;
}

.announcement-with-image:hover .announcement-text .ann-title {
    color: var(--secondary-orange);
}

.announcement-text .ann-date {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ============================================= */
/* ANNOUNCEMENT MODAL                           */
/* ============================================= */

.announcement-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.announcement-modal.active {
    display: flex !important;
}

.announcement-modal-content {
    background: var(--white);
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 95vh;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.announcement-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    background: var(--primary-blue);
    color: var(--white);
    border-bottom: 3px solid var(--secondary-orange);
}

.announcement-modal-header h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.announcement-modal-header h3 i {
    color: var(--secondary-orange);
}

.announcement-modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    padding: 0 4px;
}

.announcement-modal-close:hover {
    color: var(--secondary-orange);
    transform: rotate(90deg);
}

.announcement-modal-body {
    padding: 20px;
}

.announcement-modal-image-wrapper {
    border-radius: 10px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 60vh;
    overflow-y: auto;
}

.announcement-modal-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.announcement-modal-footer {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.announcement-modal-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.announcement-modal-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.announcement-modal-date i {
    color: var(--secondary-orange);
    margin-right: 6px;
}

.announcement-modal-title {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.95rem;
}

.announcement-modal-actions {
    display: flex;
    gap: 10px;
}

.btn-download-image,
.btn-close-modal {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-download-image {
    background: var(--secondary-orange);
    color: var(--white);
}

.btn-download-image:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-close-modal {
    background: var(--bg-light);
    color: var(--text-muted);
}

.btn-close-modal:hover {
    background: #e5e7eb;
}

/* ============================================= */
/* RESPONSIVE - ANNOUNCEMENT MODAL              */
/* ============================================= */

@media (max-width: 768px) {
    .announcement-modal-content {
        max-width: 95%;
        margin: 10px;
        border-radius: 12px;
    }

    .announcement-modal-image-wrapper {
        max-height: 50vh;
    }

    .announcement-modal-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .announcement-modal-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-download-image,
    .btn-close-modal {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .announcement-modal-header h3 {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .announcement-modal-body {
        padding: 12px;
    }

    .announcement-modal-image-wrapper {
        max-height: 40vh;
    }

    .announcement-modal-title {
        font-size: 0.85rem;
    }

    .announcement-modal-date {
        font-size: 0.7rem;
    }

    .announcement-overlay i {
        font-size: 1.8rem;
    }

    .announcement-overlay span {
        font-size: 0.65rem;
    }
}

/* ============================================= */
/* IMAGE ANNOUNCEMENTS - FULL WIDTH SIDEBAR     */
/* ============================================= */

.image-announcements-widget {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.image-announcements-widget h3 {
    padding: 0 0 12px 0;
    margin-bottom: 14px;
}

.announcement-image-full-width {
    margin-bottom: 16px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.announcement-image-full-width:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.announcement-image-full-width a {
    display: block;
    text-decoration: none;
}

.announcement-img-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    cursor: pointer;
    background: #f0f0f0;
}

.announcement-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.announcement-image-full-width:hover .announcement-img-wrapper img {
    transform: scale(1.02);
}

.announcement-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 38, 71, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.announcement-image-full-width:hover .announcement-img-overlay {
    opacity: 1;
}

.announcement-img-overlay i {
    color: var(--white);
    font-size: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.announcement-img-overlay span {
    color: var(--white);
    font-size: 0.8rem;
    margin-top: 6px;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.announcement-img-caption {
    padding: 12px 14px 14px;
}

.announcement-img-title {
    display: block;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.88rem;
    line-height: 1.4;
    transition: var(--transition);
    margin-bottom: 2px;
}

.announcement-image-full-width:hover .announcement-img-title {
    color: var(--secondary-orange);
}

.announcement-img-date {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ============================================= */
/* ANNOUNCEMENT MODAL                           */
/* ============================================= */

.announcement-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.announcement-modal.active {
    display: flex !important;
}

.announcement-modal-content {
    background: var(--white);
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 95vh;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease;
}

.announcement-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    background: var(--primary-blue);
    color: var(--white);
    border-bottom: 3px solid var(--secondary-orange);
}

.announcement-modal-header h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.announcement-modal-header h3 i {
    color: var(--secondary-orange);
}

.announcement-modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    padding: 0 4px;
}

.announcement-modal-close:hover {
    color: var(--secondary-orange);
    transform: rotate(90deg);
}

.announcement-modal-body {
    padding: 20px;
}

.announcement-modal-image-wrapper {
    border-radius: 10px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 60vh;
    overflow-y: auto;
}

.announcement-modal-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.announcement-modal-footer {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.announcement-modal-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.announcement-modal-title {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1rem;
}

.announcement-modal-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.announcement-modal-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-download-image,
.btn-close-modal {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-download-image {
    background: var(--secondary-orange);
    color: var(--white);
}

.btn-download-image:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-close-modal {
    background: var(--bg-light);
    color: var(--text-muted);
}

.btn-close-modal:hover {
    background: #e5e7eb;
}

/* ============================================= */
/* RESPONSIVE                                   */
/* ============================================= */

@media (max-width: 768px) {
    .announcement-modal-content {
        max-width: 95%;
        margin: 10px;
        border-radius: 12px;
    }

    .announcement-modal-image-wrapper {
        max-height: 50vh;
    }

    .announcement-modal-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .announcement-modal-actions {
        justify-content: center;
    }

    .announcement-img-overlay i {
        font-size: 2rem;
    }

    .announcement-img-overlay span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .announcement-modal-body {
        padding: 12px;
    }

    .announcement-modal-image-wrapper {
        max-height: 40vh;
    }

    .announcement-modal-title {
        font-size: 0.9rem;
    }

    .announcement-modal-desc {
        font-size: 0.78rem;
    }

    .announcement-img-title {
        font-size: 0.82rem;
    }

    .btn-download-image,
    .btn-close-modal {
        padding: 6px 14px;
        font-size: 0.7rem;
    }

    .announcement-img-overlay i {
        font-size: 1.5rem;
    }

    .announcement-img-overlay span {
        font-size: 0.6rem;
    }
}


