/* ==========================================================================
   THEMEGREEN - MASTER PURE CSS STYLESHEET (100% KALAMIZU REDESIGN)
   "Semuanya": Comprehensive Total Redesign for All Pages & Components
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Montserrat:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,400&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ==========================================================================
   CSS VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
  --tg-primary: #367c55;
  --tg-primary-hover: #26633f;
  --tg-primary-light: #489b6a;
  --tg-primary-ultra-light: #f0fdf4;
  --tg-dark: #1b4d31;
  --tg-dark-bg: #1e2521;
  --tg-pill: #3b8559;
  --tg-pill-hover: #27653f;
  --tg-accent-gold: #f1c40f;
  --tg-navbar-bg: #ebebeb;
  --tg-navbar-border: #dcdcdc;
  --tg-text: #2c3e50;
  --tg-text-headings: #1e293b;
  --tg-text-muted: #64748b;
  --tg-border: #e2e8f0;
  --tg-border-light: #f1f5f9;
  --tg-bg-page: #ffffff;
  --tg-bg-body: #f4f7f5;
  --tg-bg-card: #ffffff;
  --tg-radius-sm: 4px;
  --tg-radius-md: 8px;
  --tg-radius-pill: 25px;
  --tg-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --tg-shadow-md: 0 4px 14px rgba(0,0,0,0.08);
  --tg-shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

/* ==========================================================================
   CORE RESET & TYPOGRAPHY
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--tg-bg-body);
  color: var(--tg-text);
  font-size: 14px;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

a {
  color: var(--tg-primary);
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

a:hover {
  color: var(--tg-primary-hover);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--tg-text-headings);
  margin-top: 0;
  font-weight: 700;
  line-height: 1.3;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Page Frame */
.pkp_structure_page {
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--tg-bg-page);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.07);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.themegreen_container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ==========================================================================
   1. HEADER BANNER (KALAMIZU DESIGN)
   ========================================================================== */
.themegreen_header {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
}

.themegreen_banner {
  background-color: var(--tg-primary);
  background-image: url('../images/header-bg.svg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 24px 0 18px 0;
  position: relative;
  border-bottom: 5px solid var(--tg-dark);
}

.themegreen_banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 260px;
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    #55a877,
    #55a877 6px,
    transparent 6px,
    transparent 12px
  );
  opacity: 0.85;
}

.header_content_grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* Left: Logo & Journal Title */
.themegreen_branding {
  flex: 1 1 auto;
  min-width: 320px;
}

.themegreen_branding .branding_link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  gap: 16px;
}

.themegreen_branding .logo_icon_box {
  flex: 0 0 85px;
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.themegreen_branding .logo_icon_box .site_logo_img {
  max-width: 100%;
  max-height: 85px;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.18));
}

.themegreen_branding .journal_title_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.themegreen_branding .journal_title_box .main_journal_title {
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 2.5px;
  margin: 0;
  padding: 0;
  line-height: 1.1;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.themegreen_branding .journal_title_box .sub_journal_title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin: 6px 0 0 0;
  padding: 0;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

/* Right: ISSN & Indexing Badges */
.themegreen_meta_badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.themegreen_issn_row {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 11.5px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.themegreen_badges_row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.themegreen_badges_row .badge_card {
  display: inline-block;
  background: #ffffff;
  padding: 3px 6px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  line-height: 1;
}

.themegreen_badges_row .badge_card img {
  height: 28px;
  width: auto;
  display: block;
}

.themegreen_badges_row .badge_card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   2. NAVIGATION BAR
   ========================================================================== */
.themegreen_navbar {
  background-color: var(--tg-navbar-bg);
  border-bottom: 1px solid var(--tg-navbar-border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
  padding: 0;
}

.themegreen_navbar .navbar_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.themegreen_navbar .navbar_links {
  flex: 1 1 auto;
}

.themegreen_navbar .themegreen_primary_nav,
.themegreen_navbar .pkp_navigation_primary {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.themegreen_navbar .themegreen_primary_nav li,
.themegreen_navbar .pkp_navigation_primary li {
  position: relative;
  margin: 0;
  padding: 0;
}

.themegreen_navbar .themegreen_primary_nav li a,
.themegreen_navbar .pkp_navigation_primary li a {
  display: block;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #222222;
  text-decoration: none;
  transition: all 0.2s ease;
}

.themegreen_navbar .themegreen_primary_nav li a:hover,
.themegreen_navbar .themegreen_primary_nav li a:focus,
.themegreen_navbar .pkp_navigation_primary li a:hover,
.themegreen_navbar .pkp_navigation_primary li a:focus {
  color: var(--tg-primary);
  background-color: rgba(0,0,0,0.04);
}

/* Dropdown */
.themegreen_navbar .themegreen_primary_nav li ul,
.themegreen_navbar .pkp_navigation_primary li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 190px;
  list-style: none;
  margin: 0;
  padding: 6px 0;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  border-radius: 0 0 4px 4px;
  border: 1px solid #e2e8f0;
  display: none;
  z-index: 1000;
}

.themegreen_navbar .themegreen_primary_nav li ul li a,
.themegreen_navbar .pkp_navigation_primary li ul li a {
  padding: 8px 16px;
  font-size: 13px;
  color: #334155;
  font-weight: 500;
}

.themegreen_navbar .themegreen_primary_nav li ul li a:hover,
.themegreen_navbar .pkp_navigation_primary li ul li a:hover {
  background-color: var(--tg-primary-ultra-light);
  color: var(--tg-primary);
}

.themegreen_navbar .themegreen_primary_nav li:hover > ul,
.themegreen_navbar .pkp_navigation_primary li:hover > ul {
  display: block;
}

/* Search Bar */
.themegreen_navbar .navbar_search_box {
  flex: 0 0 auto;
  padding: 6px 0;
}

.themegreen_navbar .nav_search_form {
  display: flex;
  align-items: center;
  gap: 6px;
}

.themegreen_navbar .nav_search_input {
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 13px;
  color: #333333;
  width: 175px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.themegreen_navbar .nav_search_input:focus {
  border-color: var(--tg-primary);
  box-shadow: 0 0 0 2px rgba(54, 124, 85, 0.2);
}

.themegreen_navbar .nav_search_btn {
  background: var(--tg-primary);
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.themegreen_navbar .nav_search_btn:hover {
  background: var(--tg-dark);
}

/* ==========================================================================
   3. 2-COLUMN STRUCTURE & MAIN CONTAINER
   ========================================================================== */
.themegreen_content_wrapper {
  display: flex;
  gap: 30px;
  padding: 30px 15px;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  flex: 1 0 auto;
}

.themegreen_content_wrapper .pkp_structure_main {
  flex: 1 1 68%;
  min-width: 0;
}

.themegreen_content_wrapper .themegreen_sidebar {
  flex: 0 0 280px;
  width: 280px;
}

/* Breadcrumbs */
.themegreen_breadcrumbs,
.cmp_breadcrumbs {
  margin-bottom: 22px;
  font-size: 13px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.themegreen_breadcrumbs .breadcrumb_list,
.cmp_breadcrumbs ol {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 8px !important;
}

.themegreen_breadcrumbs .breadcrumb_item,
.cmp_breadcrumbs li {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #64748b !important;
  font-size: 13px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
}

.themegreen_breadcrumbs .breadcrumb_link,
.cmp_breadcrumbs a {
  color: #2e7d32 !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: color 0.15s ease !important;
}

.themegreen_breadcrumbs .breadcrumb_link:hover,
.cmp_breadcrumbs a:hover {
  color: #1b5e20 !important;
  text-decoration: underline !important;
}

.themegreen_breadcrumbs .breadcrumb_separator {
  color: #cbd5e1 !important;
  font-size: 11px !important;
}

.cmp_breadcrumbs li + li::before {
  content: "" !important;
  display: none !important;
}

.cmp_breadcrumbs .separator {
  color: #cbd5e1 !important;
  margin: 0 4px !important;
}

.themegreen_breadcrumbs .breadcrumb_active,
.cmp_breadcrumbs .current {
  color: #475569 !important;
  font-weight: 600 !important;
}

/* ==========================================================================
   4. HOMEPAGE HERO & DESKRIPSI JURNAL
   ========================================================================== */
.themegreen_index_page .journal_hero_section {
  margin-bottom: 35px;
}

.themegreen_index_page .journal_hero_card {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.themegreen_index_page .journal_cover_col {
  flex: 0 0 220px;
  width: 220px;
}

.themegreen_index_page .cover_wrapper {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--tg-shadow-md);
  border: 1px solid #d5ded8;
  background: #ffffff;
}

.themegreen_index_page .journal_cover_img {
  width: 100%;
  height: auto;
  display: block;
}

.themegreen_index_page .journal_meta_col {
  flex: 1 1 auto;
  min-width: 0;
}

.themegreen_index_page .deskripsi_jurnal_title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--tg-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.themegreen_index_page .journal_spec_table {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--tg-border);
  border-radius: 6px;
  overflow: hidden;
}

.themegreen_index_page .spec_row {
  display: flex;
  padding: 11px 16px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 13.5px;
  line-height: 1.5;
  transition: background-color 0.15s ease;
}

.themegreen_index_page .spec_row:nth-child(even) {
  background-color: #fbfdfc;
}

.themegreen_index_page .spec_row:hover {
  background-color: #f0fdf4;
}

.themegreen_index_page .spec_row:last-child {
  border-bottom: none;
}

.themegreen_index_page .spec_label {
  flex: 0 0 165px;
  font-weight: 700;
  color: #1e293b;
}

.themegreen_index_page .spec_value {
  flex: 1 1 auto;
  color: #334155;
}

.themegreen_index_page .journal_summary_paragraph_card {
  background: #ffffff;
  border: 1px solid var(--tg-border);
  border-left: 4px solid var(--tg-primary);
  border-radius: 0 6px 6px 0;
  padding: 20px 24px;
  margin: 22px 0 35px 0;
  box-shadow: var(--tg-shadow-sm);
  font-size: 14px;
  line-height: 1.8;
  color: #334155;
  text-align: justify;
}

.themegreen_index_page .journal_summary_paragraph_card p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   5. SIDEBAR & NAVIGATION PILLS
   ========================================================================== */
.themegreen_sidebar .block_themegreen_nav {
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 25px;
  border: 1px solid #e0e0e0;
  box-shadow: var(--tg-shadow-sm);
}

.themegreen_sidebar .nav_block_header {
  background: #f4f4f4;
  border-top: 4px solid var(--tg-accent-gold);
  border-bottom: 1px solid #e2e2e2;
  padding: 12px 15px;
  text-align: center;
}

.themegreen_sidebar .nav_title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #222222;
  margin: 0;
  padding: 0;
  letter-spacing: 0.5px;
}

.themegreen_sidebar .nav_pill_list {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.themegreen_sidebar .nav_pill_btn {
  display: block;
  background-color: var(--tg-pill);
  color: #ffffff !important;
  text-align: center;
  padding: 10px 16px;
  border-radius: var(--tg-radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  transition: all 0.2s ease;
  border: none;
}

.themegreen_sidebar .nav_pill_btn:hover {
  background-color: var(--tg-pill-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  color: #ffffff !important;
}

.themegreen_sidebar .nav_pill_btn:active {
  transform: translateY(0);
}

/* Generic OJS Sidebar Blocks */
.themegreen_sidebar .block {
  background: #ffffff;
  border: 1px solid var(--tg-border);
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: var(--tg-shadow-sm);
}

.themegreen_sidebar .block .title {
  background: var(--tg-primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 15px;
  margin: 0;
  border-bottom: 2px solid var(--tg-dark);
}

.themegreen_sidebar .block .content {
  padding: 15px;
  font-size: 13.5px;
}

.themegreen_sidebar .block input[type="text"],
.themegreen_sidebar .block input[type="password"] {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--tg-border);
  border-radius: 4px;
  margin-bottom: 10px;
  font-size: 13px;
}

.themegreen_sidebar .block button[type="submit"],
.themegreen_sidebar .block .pkp_button {
  background: var(--tg-primary);
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.themegreen_sidebar .block button[type="submit"]:hover {
  background: var(--tg-dark);
}

/* ==========================================================================
   6. ARTICLE SUMMARY LISTS & ISSUE TOC (CLEAN, COMPACT, VERTICAL STACK)
   ========================================================================== */
/* Reset list bullets, borders, and margins across all list types */
.obj_issue_toc,
.themegreen_issue_toc,
.themegreen_toc_sections,
.toc_section_group,
.section_articles_clean_list,
.cmp_article_list,
.articles_list,
.published_articles_list,
.published_articles_container,
ul.articles,
.sections .articles,
.section_articles_block ul {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.obj_issue_toc li,
.themegreen_issue_toc li,
.cmp_article_list > li,
.articles_list > li,
.published_articles_list > li,
ul.articles > li,
.sections .articles > li,
.section_articles_block li {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}

/* Article Card & Summary Item: Clean, Compact, Vertical Flow (Dotted bottom border only) */
.themegreen_article_summary_item,
.themegreen_article_card,
.obj_article_summary {
  display: block !important;
  background: #ffffff !important;
  padding: 16px 0 18px 0 !important;
  margin: 0 0 4px 0 !important;
  border: none !important;
  border-bottom: 1px dotted #cbd5e1 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.themegreen_article_summary_item:last-child,
.themegreen_article_card:last-child,
.obj_article_summary:last-child {
  border-bottom: none !important;
  margin-bottom: 0 !important;
}

/* 1. Top Meta: Published Date */
.themegreen_article_summary_item .meta_published_date,
.themegreen_article_card .article_top_meta,
.themegreen_article_card .article_pub_date {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

/* 2. Article Title */
.themegreen_article_summary_item .article_title_heading,
.themegreen_article_card .article_title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  margin: 2px 0 8px 0;
  line-height: 1.4;
  display: block;
}

.themegreen_article_summary_item .article_title_heading a,
.themegreen_article_card .article_title a {
  color: #0066cc !important;
  text-decoration: none;
  transition: color 0.15s ease;
}

.themegreen_article_summary_item .article_title_heading a:hover,
.themegreen_article_card .article_title a:hover {
  color: #004c99 !important;
  text-decoration: underline;
}

.themegreen_article_summary_item .article_subtitle_text,
.themegreen_article_card .article_subtitle {
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  margin: 0 0 6px 0;
}

/* 3. Middle: Authors with Affiliations & Pages */
.themegreen_article_summary_item .authors_and_pages_container,
.themegreen_article_card .article_author_pages_row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 15px !important;
  margin-bottom: 10px !important;
}

.themegreen_article_summary_item .authors_list_column,
.themegreen_article_card .article_authors_block {
  flex: 1 1 auto;
}

.themegreen_article_summary_item .single_author_row,
.themegreen_article_card .author_line {
  font-size: 13px;
  line-height: 1.45;
  color: #334155;
  margin-bottom: 2px;
}

.themegreen_article_summary_item .author_full_name,
.themegreen_article_card .author_line .author_name {
  font-weight: 700;
  color: #0f172a;
}

.themegreen_article_summary_item .author_affil_country,
.themegreen_article_card .author_line .author_affiliation {
  color: #475569;
}

.themegreen_article_summary_item .article_pages_badge,
.themegreen_article_card .article_pages_box {
  flex: 0 0 auto;
  font-size: 12.5px;
  font-weight: 600;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

/* 4. Bottom: DOI, Stats & Galleys */
.themegreen_article_summary_item .article_footer_row,
.themegreen_article_card .article_bottom_row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 6px !important;
}

.themegreen_article_summary_item .stats_and_doi_wrapper,
.themegreen_article_card .article_stats_doi {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: #64748b;
}

.themegreen_article_summary_item .doi_link_text a,
.themegreen_article_card .stat_item.doi_item a {
  color: #0066cc;
  text-decoration: none;
}

.themegreen_article_summary_item .doi_link_text a:hover,
.themegreen_article_card .stat_item.doi_item a:hover {
  text-decoration: underline;
}

.themegreen_article_summary_item .meta_separator {
  color: #cbd5e1;
  font-size: 11px;
}

.themegreen_article_summary_item .stats_counter_item,
.themegreen_article_card .stat_item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.themegreen_article_summary_item .galleys_action_wrapper,
.themegreen_article_card .article_galleys_box {
  flex: 0 0 auto;
}

.themegreen_article_summary_item .btn_pdf_green,
.themegreen_article_card .galley_btn_solid,
.btn_pdf_green,
.galley_btn_solid {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  background: #006633 !important;
  color: #ffffff !important;
  padding: 4px 12px !important;
  border-radius: 3px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: background-color 0.15s ease, transform 0.15s ease !important;
  box-shadow: 0 1px 2px rgba(0,0,0,0.12) !important;
}

.themegreen_article_summary_item .btn_pdf_green:hover,
.themegreen_article_card .galley_btn_solid:hover,
.btn_pdf_green:hover,
.galley_btn_solid:hover {
  background: #004d26 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.18) !important;
}

/* ==========================================================================
   ISSUE PAGE HEADER (UNDER BREADCRUMB)
   ========================================================================== */
.themegreen_issue_page .themegreen_issue_header_card,
.themegreen_issue_page .issue_hero_banner {
  margin: 0.5rem 0 1.25rem 0;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid #2e7d32;
  background: transparent;
  box-shadow: none;
}

.themegreen_issue_page .issue_main_title,
.themegreen_issue_page .issue_hero_title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.35;
  margin: 0 0 0.4rem 0;
}

.themegreen_issue_page .issue_meta_row,
.themegreen_issue_page .issue_hero_meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #64748b;
}

.themegreen_issue_page .meta_published_badge,
.themegreen_issue_page .meta_badge_date {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
  font-size: 0.82rem;
  color: #64748b;
  background: transparent;
  border: none;
  padding: 0;
}

.themegreen_issue_page .meta_published_badge i,
.themegreen_issue_page .meta_badge_date i {
  color: #2e7d32;
}

/* Section Header (Articles) */
.themegreen_toc_sections .section_header_bar {
  margin: 1.25rem 0 0.75rem 0;
  padding-bottom: 0.4rem;
  border-bottom: 1.5px solid #e2e8f0;
}

.themegreen_toc_sections .section_title_badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

/* All Issues Footer Link */
.all_issues_footer_bar {
  padding: 14px 0 6px 0;
  border-top: 1px dotted #cbd5e1;
  margin-top: 10px;
}

.all_issues_footer_bar .btn_all_issues_link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: #0066cc;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.15s ease;
}

.all_issues_footer_bar .btn_all_issues_link:hover {
  color: #004c99;
  text-decoration: underline;
}

/* Issue TOC Headers */
.themegreen_issue_toc .issue_toc_meta_header {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
  color: #475569;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--tg-border);
}

.themegreen_issue_toc .section_title_badge {
  font-size: 16px;
  font-weight: 700;
  color: var(--tg-primary);
  border-bottom: 2px solid var(--tg-border);
  padding-bottom: 4px;
  margin: 20px 0 10px 0;
}

.themegreen_current_issue_section {
  margin-top: 30px;
}

.themegreen_current_issue_section .current_issue_header_bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  background: #f8fafc;
  border: 1px solid var(--tg-border);
  border-left: 4px solid var(--tg-primary);
  border-radius: 4px;
  padding: 14px 20px;
  margin-bottom: 22px;
}

.themegreen_current_issue_section .current_issue_main_title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.themegreen_current_issue_section .current_issue_main_title i {
  color: var(--tg-primary);
}

.themegreen_current_issue_section .issue_published_date {
  font-size: 12.5px;
  color: #64748b;
  margin-top: 4px;
}

.themegreen_current_issue_section .btn_view_archive {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tg-primary);
  color: #ffffff !important;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.themegreen_current_issue_section .btn_view_archive:hover {
  background: var(--tg-dark);
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.article_section_title {
  font-size: 17px;
  font-weight: 700;
  color: var(--tg-primary);
  border-bottom: 2px solid var(--tg-border);
  padding-bottom: 6px;
  margin: 25px 0 16px 0;
}

.themegreen_additional_section {
  margin-top: 2.25rem;
}

.themegreen_additional_section .additional_content_card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-left: 4px solid #2e7d32;
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.themegreen_additional_section .additional_content_card h1,
.themegreen_additional_section .additional_content_card h2,
.themegreen_additional_section .additional_content_card h3,
.themegreen_additional_section .additional_content_card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.85rem 0;
  padding-bottom: 0.6rem;
  border-bottom: 1.5px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.themegreen_additional_section .additional_content_card p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: #334155;
  text-align: justify;
  margin-bottom: 0.85rem;
}

.themegreen_additional_section .additional_content_card p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   7. ARTICLE DETAILS PAGE
   ========================================================================== */
.obj_article_details {
  background: #ffffff;
}

.obj_article_details .page_title {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 12px;
  border: none;
  padding: 0;
}

.obj_article_details .authors {
  margin-bottom: 20px;
  font-size: 15px;
  color: #334155;
}

.obj_article_details .authors .name {
  font-weight: 600;
  color: var(--tg-primary);
}

.obj_article_details .authors .affiliation {
  font-size: 13px;
  color: var(--tg-text-muted);
}

.obj_article_details .doi_badge {
  display: inline-block;
  background: var(--tg-primary-ultra-light);
  border: 1px solid #bbf7d0;
  color: var(--tg-dark);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  margin-bottom: 25px;
}

.obj_article_details .row {
  display: flex;
  gap: 30px;
}

.obj_article_details .main_entry {
  flex: 1 1 70%;
  min-width: 0;
}

.obj_article_details .entry_details {
  flex: 0 0 250px;
  width: 250px;
}

.obj_article_details .item {
  margin-bottom: 25px;
}

.obj_article_details .item .label,
.obj_article_details .item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--tg-text-headings);
  border-bottom: 1px solid var(--tg-border);
  padding-bottom: 6px;
  margin-bottom: 10px;
}

.obj_article_details .item .value {
  font-size: 14px;
  line-height: 1.75;
  color: #334155;
  text-align: justify;
}

.obj_article_details .entry_details .item {
  background: #f8fafc;
  border: 1px solid var(--tg-border);
  border-radius: 6px;
  padding: 15px;
}

/* How to cite box */
.csl-bib-body {
  background: #f8fafc;
  border-left: 3px solid var(--tg-primary);
  padding: 12px 15px;
  border-radius: 0 4px 4px 0;
  font-size: 13px;
  line-height: 1.6;
}

/* ==========================================================================
   8. ISSUE ARCHIVE & TOC PAGES
   ========================================================================== */
.page_issue_archive .issues_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.obj_issue_summary {
  background: #ffffff;
  border: 1px solid var(--tg-border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--tg-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.obj_issue_summary:hover {
  transform: translateY(-3px);
  box-shadow: var(--tg-shadow-md);
  border-color: var(--tg-primary);
}

.obj_issue_summary .cover {
  height: 240px;
  overflow: hidden;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.obj_issue_summary .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.obj_issue_summary .issue_meta {
  padding: 15px;
}

.obj_issue_summary .issue_title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px 0;
}

.obj_issue_summary .issue_title a {
  color: var(--tg-text-headings);
}

.obj_issue_summary .issue_title a:hover {
  color: var(--tg-primary);
}

.obj_issue_summary .published {
  font-size: 12px;
  color: var(--tg-text-muted);
}

/* ==========================================================================
   9. AUTH & FORM PAGES (LOGIN, REGISTER, ETC)
   ========================================================================== */
.page_login,
.page_register,
.page_lost_password {
  max-width: 600px;
  margin: 20px auto;
  background: #ffffff;
  border: 1px solid var(--tg-border);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--tg-shadow-sm);
}

.pkp_form .section {
  margin-bottom: 20px;
}

.pkp_form label {
  display: block;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 6px;
  font-size: 13.5px;
}

.pkp_form input[type="text"],
.pkp_form input[type="password"],
.pkp_form input[type="email"],
.pkp_form textarea,
.pkp_form select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--tg-border);
  border-radius: 4px;
  font-size: 14px;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pkp_form input:focus,
.pkp_form textarea:focus,
.pkp_form select:focus {
  border-color: var(--tg-primary);
  box-shadow: 0 0 0 3px rgba(54, 124, 85, 0.15);
}

.pkp_form .buttons {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.pkp_button,
.pkp_form button[type="submit"] {
  background: var(--tg-primary);
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.pkp_button:hover,
.pkp_form button[type="submit"]:hover {
  background: var(--tg-dark);
}

/* ==========================================================================
   10. SEARCH PAGE
   ========================================================================== */
.page_search .search_results {
  margin-top: 30px;
}

.page_search .results_count {
  font-size: 14px;
  color: var(--tg-text-muted);
  margin-bottom: 15px;
}

.cmp_pagination {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.cmp_pagination a,
.cmp_pagination span {
  padding: 6px 12px;
  border: 1px solid var(--tg-border);
  border-radius: 4px;
  font-size: 13px;
  color: var(--tg-text);
}

.cmp_pagination .current {
  background: var(--tg-primary);
  color: #ffffff;
  border-color: var(--tg-primary);
}

/* ==========================================================================
   10.5. STATIC, ABOUT, SUBMISSIONS & INFORMATIONAL PAGES
   ========================================================================== */
.themegreen_static_page .themegreen_static_card,
.page_about,
.page_editorial_team,
.page_contact,
.page_submissions,
.page_privacy,
.page_information,
.page_static {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 1.75rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-bottom: 2rem;
}

.themegreen_static_card .static_main_title,
.page_about h1,
.page_editorial_team h1,
.page_contact h1,
.page_submissions h1,
.page_privacy h1,
.page_static h1,
.page_static h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 1.25rem 0;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid #2e7d32;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.static_page_content_body,
.page_about,
.page_editorial_team,
.page_privacy,
.page_static {
  font-size: 0.92rem;
  line-height: 1.8;
  color: #334155;
  text-align: justify;
}

.static_page_content_body p,
.themegreen_static_card p {
  margin-bottom: 0.85rem;
}

.static_page_content_body p:last-child,
.themegreen_static_card p:last-child {
  margin-bottom: 0;
}

.static_section_block {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
}

.static_section_block .section_subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.6rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.static_section_block .section_subtitle i {
  color: #2e7d32;
}

.static_section_block .section_desc {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 0.75rem;
}

/* Submission CTA & Checklist */
.submission_cta_box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #2e7d32;
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.submission_cta_box .cta_btn_group {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.btn_cta_primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #2e7d32;
  color: #ffffff !important;
  padding: 0.55rem 1.25rem;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}

.btn_cta_primary:hover {
  background: #1b5e20;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.btn_cta_secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  color: #2e7d32 !important;
  border: 1.5px solid #2e7d32;
  padding: 0.5rem 1.15rem;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}

.btn_cta_secondary:hover {
  background: #f0fdf4;
}

.checklist_items {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checklist_items li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #334155;
}

.checklist_items .checklist_icon {
  color: #2e7d32;
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* Contact Page Grid */
.contact_grid_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .contact_grid_wrapper {
    grid-template-columns: 1fr;
  }
}

.contact_info_card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 1.25rem;
}

.contact_info_card .contact_card_title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.75rem 0;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.contact_info_card .contact_card_title i {
  color: #2e7d32;
}

.contact_details {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #475569;
}

.contact_details a {
  color: #2e7d32;
  text-decoration: none;
}

.contact_details a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   11. REDESIGNED 4-COLUMN ACADEMIC FOOTER
   ========================================================================== */
.themegreen_footer {
  background: var(--tg-dark-bg);
  color: #cbd5e1;
  margin-top: auto;
  position: relative;
}

.themegreen_footer .footer_top_accent {
  height: 6px;
  background: linear-gradient(90deg, var(--tg-primary) 0%, #489b6a 50%, var(--tg-accent-gold) 100%);
}

.themegreen_footer .footer_container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 45px 15px 25px 15px;
}

.themegreen_footer .footer_grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr 0.9fr;
  gap: 30px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Column */
.themegreen_footer .footer_brand_col .footer_logo_wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}

.themegreen_footer .footer_brand_col .footer_logo_img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.themegreen_footer .footer_brand_col .footer_journal_title {
  font-family: 'Cinzel', 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: 1px;
}

.themegreen_footer .footer_brand_col .footer_journal_sub {
  font-size: 12px;
  color: #94a3b8;
  margin: 2px 0 0 0;
}

.themegreen_footer .footer_brand_col .footer_desc_text {
  font-size: 13px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 15px;
}

.themegreen_footer .footer_brand_col .footer_issn_info {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: #e2e8f0;
}

.themegreen_footer .footer_brand_col .footer_issn_info strong {
  color: var(--tg-primary-light);
}

/* Footer Section Headers */
.themegreen_footer .footer_col_title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 16px 0;
  position: relative;
  padding-bottom: 8px;
  letter-spacing: 0.5px;
}

.themegreen_footer .footer_col_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: var(--tg-primary);
  border-radius: 2px;
}

/* Quick Nav Links */
.themegreen_footer .footer_nav_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.themegreen_footer .footer_nav_list li {
  margin-bottom: 8px;
}

.themegreen_footer .footer_nav_list li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.themegreen_footer .footer_nav_list li a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.themegreen_footer .footer_nav_list li a i {
  color: var(--tg-primary-light);
  font-size: 12px;
}

/* Contact Info */
.themegreen_footer .footer_contact_info p {
  font-size: 13px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.themegreen_footer .footer_contact_info p.contact_institution strong {
  color: #ffffff;
  font-size: 14px;
}

.themegreen_footer .footer_contact_info p i {
  color: var(--tg-primary-light);
  margin-top: 3px;
}

/* Indexing Badges */
.themegreen_footer .footer_indexing_badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.themegreen_footer .footer_badge_item {
  display: inline-block;
  background: #ffffff;
  padding: 4px 8px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
  line-height: 1;
}

.themegreen_footer .footer_badge_item img {
  height: 26px;
  width: auto;
  display: block;
}

.themegreen_footer .footer_badge_item:hover {
  transform: translateY(-2px);
}

/* Custom Page Footer */
.themegreen_footer .footer_custom_page_footer {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 13px;
}

/* Bottom Bar */
.themegreen_footer .footer_bottom_bar {
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.themegreen_footer .footer_license_statement {
  display: flex;
  align-items: center;
  gap: 15px;
}

.themegreen_footer .footer_license_statement .license_text {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.5;
}

.themegreen_footer .footer_license_statement .license_text strong {
  color: #ffffff;
}

.themegreen_footer .footer_license_statement .license_text a {
  color: var(--tg-primary-light);
  text-decoration: none;
}

.themegreen_footer .footer_license_statement .license_text a:hover {
  text-decoration: underline;
}

.themegreen_footer .footer_powered_by {
  font-size: 12px;
  color: #64748b;
}

.themegreen_footer .footer_powered_by a {
  color: var(--tg-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.themegreen_footer .footer_powered_by a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   12. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
  .themegreen_header .header_content_grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .themegreen_meta_badges {
    align-items: flex-start;
    width: 100%;
  }

  .themegreen_issn_row {
    align-items: flex-start;
  }

  .themegreen_content_wrapper {
    flex-direction: column;
  }

  .themegreen_content_wrapper .themegreen_sidebar {
    width: 100%;
    flex: 1 1 100%;
  }

  .obj_article_details .row {
    flex-direction: column;
  }

  .obj_article_details .entry_details {
    width: 100%;
  }

  .themegreen_footer .footer_grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .themegreen_branding .branding_link {
    flex-direction: column;
    align-items: flex-start;
  }

  .themegreen_branding .journal_title_box .main_journal_title {
    font-size: 28px;
  }

  .themegreen_branding .journal_title_box .sub_journal_title {
    font-size: 16px;
  }

  .themegreen_index_page .journal_hero_card {
    flex-direction: column;
  }

  .themegreen_index_page .journal_cover_col {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  .themegreen_article_card {
    flex-direction: column;
    align-items: flex-start;
  }

  .themegreen_navbar .navbar_flex {
    flex-direction: column;
    align-items: stretch;
  }

  .themegreen_navbar .navbar_search_box {
    padding: 10px 15px 15px;
  }

  .themegreen_navbar .nav_search_input {
    width: 100%;
  }

  .themegreen_footer .footer_grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .themegreen_footer .footer_bottom_bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
