
/* ========== Kanuun: Journal of Sharia, Law, and Digital Society ========= */

:root {
  --primary-color: #083736;
  --secondary-color: #006766;
  --accent-color: #d4af37;
  --text-dark: #000;
  --text-light: #fff;
  --bg-light: transparent;
  --bg-white: ;
  --border-color: #8B5A3C;
  --border-bottom: 2px solid #fff;
  --border-top: 2px solid #fff;
  --br-sm: 10px;
  --br-md: 20px;
  --br-lg: 25px;
  --shadow-sm: 0 2px 8px rgba(74, 44, 28, 0.2);
  --shadow-md: 0 4px 12px rgba(74, 44, 28, 0.25);
  --shadow-lg: 0 10px 30px rgba(74, 44, 28, 0.4);
  --shadow-xl: 0 20px 50px rgba(74, 44, 28, 0.5);
  --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
  --gradient-accent: linear-gradient(135deg, #d4af37 0%, #f6e05e 100%);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

body {
  background: linear-gradient(to bottom, #f7fafc 0%, #edf2f7 100%);
  color: var(--text-dark);
}
a {
  color: var(--secondary-color);
}
a:hover {
  color: var(--accent-color);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary-color);
}

/* === Structure Header === */
.pkp_structure_head {
  border-bottom: none;
}
.pkp_head_wrapper {
  max-width: 100% !important;
  width: auto !important;
  padding-right: 0 !important;
}

.pkp_site_name_wrapper {
  display: flex;
  align-items: center;
  padding: 0;
  width: 100% !important;
}

.pkp_site_nav_toggle {
  outline: none !important;
  box-shadow: none;
}

.pkp_site_name {
  width: 100% !important;
}

.pkp_site_name a {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--bg-white);
  text-decoration: none;
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  transition: var(--transition-base);
  position: relative;
}

.pkp_site_name a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  transition: width var(--transition-base);
}

.pkp_site_name a:hover::after {
  width: 100%;
}

.pkp_site_name .is_img {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    width: 100%;
}

.pkp_site_name .is_img:focus {
    outline: 1px solid #fff
}

.pkp_site_name .is_img img {
    width: 100%;
    max-height: max-content;
}

/* Navigation Menu */
.pkp_site_nav_menu {
  padding: 0 10rem;
  background: var(--primary-color);
  border-top: var(--border-top);
}
.pkp_navigation_primary_wrapper {
  padding: 0;
}
.pkp_navigation_primary {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.pkp_navigation_primary li {
  position: relative;
}

.pkp_navigation_primary li a {
  display: block;
  margin: 0rem !important;
  padding: 0.75rem 1rem;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pkp_navigation_primary li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, transparent, #D4A574, transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.pkp_navigation_primary li a:hover {
  color: #FFE4C4;
  border-bottom: none;
}

.pkp_navigation_primary li a:hover::after {
  transform: translateX(0);
}

.dropdown-menu {
  background: var(--primary-color) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 90, 60, 0.2);
  border-radius: 12px;
  box-shadow: var(--shadow-lg) !important;
  padding: 12px 0;
  margin-top: 10px;
  min-width: 200px;
  display: none;
}

.pkp_navigation_primary li:hover .dropdown-menu {
  display: block;
  animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu li a {
  display: block;
  padding: 12px 24px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.dropdown-menu li a::before {
  left: 5px;
  opacity: 0;
  transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
  background: linear-gradient(90deg, rgba(139, 90, 60, 0.1), transparent);
  color: #fff;
  padding-left: 5px;
  border-color: transparent !important;
}

.dropdown-menu li a:hover::before {
  opacity: 1;
}

/* Search Menu */
.pkp_site_nav_menu .pkp_nav_list {
  margin: 0.5rem 0;
}
.pkp_navigation_search_wrapper {
  padding: 0 1rem;
}
.pkp_navigation_search_wrapper a {
  color: #fff;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem 0;
  border-bottom: none;
}
.pkp_search {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.pkp_search:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(139, 90, 60, 0.4);
  border: none;
}
.pkp_search .fa-search {
  transition: transform 0.4s ease;
  margin-right: 6px;
}
.pkp_search:hover .fa-search {
  transform: rotate(360deg);
}

/* User Navigation Menu */
.pkp_navigation_user_wrapper {
  width: 100%;
  padding: 0 10rem;
  background: var(--primary-color);
  border-bottom: var(--border-bottom);
}

.pkp_navigation_user {
  display: inline-flex;
  align-items: center;
  width: 100%;
  justify-content: flex-end;
  padding: 0 1rem !important;
}

.pkp_navigation_user li {
  position: relative;
}

.pkp_navigation_user li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pkp_navigation_user li a:hover {
  color: #FFE4C4;
}

.pkp_navigation_user li a:hover::after {
  transform: translateX(0);
}

.pkp_navigation_user .task_count {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  top: auto;
}

.pkp_navigation_user .dropdown-menu {
  background: var(--primary-color) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 90, 60, 0.2);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(74, 44, 28, 0.25);
  margin-top: 0px;
  min-width: 200px;
  display: none;
  right: 0;
  left: auto;
}

.pkp_navigation_user > li:hover .dropdown-menu {
  display: block;
  animation: fadeInDown 0.3s ease;
}

.pkp_navigation_user .dropdown-menu li a {
  display: block;
  padding: 12px 24px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.pkp_navigation_user .dropdown-menu li a::before {
  left: 5px;
  opacity: 0;
  transition: all 0.3s ease;
}

.pkp_navigation_user .dropdown-menu li a::after {
  display: block;
}

.pkp_navigation_user .dropdown-menu li a:hover {
  background: linear-gradient(90deg, rgba(139, 90, 60, 0.1), transparent);
  color: #fff;
  padding-left: 5px;
  border-color: transparent !important;
}

.pkp_navigation_user .dropdown-menu li a:hover::before {
  opacity: 1;
}

.pkp_navigation_user .dropdown-menu .task_count {
  margin-left: 8px;
  color: #fff;
  background: var(--secondary-color);
}

.pkp_navigation_primary li a:focus,
.pkp_navigation_user li a:focus {
  background: none;
  color: #fff;
}

/* === Structure Content === */

.pkp_structure_content {
  width: 100%;
  padding: 1rem 10rem;
}
.page_index_journal {
  display: flex;
  flex-direction: column;
}
.additional_content {
  order: -1;
}

.pkp_structure_main {
  width: 75%;
  padding: 2rem 4rem 0rem 1rem;
}
.pkp_structure_main::before,
.pkp_structure_main::after {
    background: none;
}
.pkp_page_index .additional_content {
    padding-top: 0;
    border-top: none;
    margin: 0;
    border-radius: 20px;
    background: #1c908e00;
    border: solid 1px var(--secondary-color);
}


/* Journal Card Container */
.journal-card {
  display: flex;
  align-items: flex-start;
  max-width: 100%;
  margin: auto;
  padding: 20px;
}

.journal-image-container {
  flex-shrink: 0;
  margin-right: 20px;
}

.journal-cover {
    width: 280px;
    height: auto;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 20px 10px;
}

.journal-info {
  flex-grow: 1;
  line-height: 1.6;
  font-size: 14px;
  color: #000;
  max-height: max-content;
}

.journal-title {
  line-height: normal !important;
  margin: 0 !important;
  padding-bottom: 0px;
  color: #000;
  font-size: 30px !important;
  text-align: left;
  text-shadow: rgba(0, 0, 0, 0.15) 0px 20px 16px;
}

.info-item {
  line-height: 25px !important;
  margin: 15px 0 !important;
}

.submit-button-container {
  margin-top: 8px;
}

.btn-submit {
  display: inline-block;
  background: var(--secondary-color);
  color: white;
  padding: 8px 15px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  transition: 0.3s;
}

.btn-submit:hover {
  background: var(--primary-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.journal-description {
  text-align: justify;
}

.indexing-title {
  text-align: center;
}

.indexing-logos {
  text-align: center;
  margin: 15px 0px !important;
}
.index-logo {
  margin: 0 10px;
}

/*============================================ Current Issue Section ==========================================*/
.current_issue {
  padding: 0;
  background: transparent;
}
.current_issue h2 {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
  margin-top: 3rem;
  background: var(--secondary-color);
  border-radius: 10px 10px 0 0;
  text-align: center;
}
.current_issue_title {
  position: relative;
  margin: 0 0px !important;
  display: inline-block;
  font-weight: 400 !important;
  font-size: 1.143rem !important;
  color: #fff !important;
  padding: 0 1.0715rem !important;
  background: var(--secondary-color) !important;
  border-radius: 0 15px 15px 0;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  line-height: 2.143rem;
}
.obj_issue_toc {
  margin-bottom: 0;
}
.heading {
  padding: 20px;
}
.cover {
  position: relative;
  z-index: 1;
}
.cover img {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

.cover:hover img {
  transform: scale(1.05) rotate(-2deg);
}
.description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.description p {
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.description strong {
  font-weight: 700;
}
.description img {
  width: 50px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s ease;
  box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.3);
}
.description img:hover {
  transform: scale(1) rotate(360deg);
}
.published {
  border-top: none;
}
.published .label {
  color: #0c0d19;
}
.sections {
  margin-top: 0 !important;
}
.section::before {
  border-top: none !important;
}
.section h3 {
  font-size: 1.143rem !important;
  color: #ffffff !important;
  margin-bottom: 30px;
  padding: 0 1.0715rem !important;
  background: var(--secondary-color) !important;
  border-radius: 0 15px 15px 0;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  left: 0 !important;
  line-height: 2.143rem;
}
.section h3::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.section h3:hover::before {
  left: 100%;
}

.cmp_article_list {
  list-style: none;
}
.cmp_article_list li {
  margin-bottom: 5px;
  padding: 15px;
  background: transparent;
  border: 1px solid var(--secondary-color);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}
.cmp_article_list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: none;
  transition: width 0.4s ease;
}
.cmp_article_list li:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(10px);
  border-color: var(--primary-color);
}
.cmp_article_list > li:hover::before {
  width: 100%;
  opacity: 0.05;
}
.obj_article_summary {
  position: relative;
}

.obj_article_summary .title {
  font-size: 1.4rem;
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 600;
}
.obj_article_summary .title a {
  color: var(--primary-color);
  text-decoration: none;
}
.obj_article_summary .title a:hover {
  color: var(--secondary-color);
  background-size: 100% 2px;
}
.obj_article_summary .title i {
  font-style: italic;
}
.meta {
  padding-bottom: 15px;
}
.authors {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  padding-left: 25px;
}
.pages {
  color: #fff !important;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0px 10px;
  background: var(--secondary-color);
  border-radius: 15px;
}
.galleys_links {
  list-style: none;
  margin: 0px !important;
}
.galleys_links li {
  border: none;
  margin: 20px 0 !important;
  padding: 0px;
}
.obj_galley_link {
  display: inline-block;
  padding: 5px 15px;
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: normal;
}
.obj_galley_link:hover {
  color: #fff;
  background: var(--primary-color);
}
.read_more {
  padding: 12px 30px;
  background: var(--secondary-color);
  color: #fff !important;
  border-radius: 20px;
  margin-top: 0px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.read_more::after {
  content: '' !important;
  position: absolute !important;
  right: 50px !important;
  top: 50% !important;
  transform: translateY(-50%) translateX(30px) !important;
  width: 20px !important;
  height: 20px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3Cpolyline points='12 5 19 12 12 19'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.read_more:hover {
  transform: translateX(10px) scale(1.05);
  box-shadow: 0 12px 30px rgba(44, 62, 80, 0.4);
  padding-right: 50px;
}

.read_more:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.read_more::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.read_more:hover::before {
  left: 100%;
}

/*================================== Structure Sidebar ==========================================*/

.pkp_structure_sidebar {
  width: 25%;
  padding-top: 2rem;
}

.pkp_block {
  padding: 0 1rem;
}

/* Additional Menu Styles */
.additional_menu {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.additional_menu_list {
  margin: 0;
  padding: 0;
}

.additional_menu_header,
.template_section_header_title,
.association_section_header_title,
.tools_section_header_title,
.visitor_section_header_title {
  padding: 5px 10px !important;
  background: var(--secondary-color);
  border: solid 1px var(--secondary-color);
  border-radius: 10px 10px 0 0;
  text-align: center;
  font-size: 15px;
  color: #fff;
  margin: 0;
}

.additional_menu_item {
  border: solid 2px var(--secondary-color);
}

.additional_menu_item:hover {
  background-color: var(--secondary-color);
  transform: translateX(5px);
}

.additional_menu_item_link {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 8px;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  line-height: normal;
  white-space: normal;
  transition: all 0.3s ease;
  padding: 10px !important;
}

.additional_menu_item_link:hover,
.additional_menu_item_link:focus {
  color: #ffffff;
  text-decoration: none;
  padding-left: 20px;
}

.additional_menu_item_link:focus {
  outline: 2px solid #ffffff;
  outline-offset: -2px;
}

.additional_menu_item_link::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-color: var(--primary-color);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  transition: background-color 0.3s ease;
}

.additional_menu_item_link:hover::before {
  background-color: #fff;
}
.additional_menu_list li:nth-child(2) .additional_menu_item_link::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Ccircle cx='12' cy='12' r='6'/%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Ccircle cx='12' cy='12' r='6'/%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3C/svg%3E");
}
.additional_menu_list li:nth-child(3) .additional_menu_item_link::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='16' y1='13' x2='8' y2='13'/%3E%3Cline x1='16' y1='17' x2='8' y2='17'/%3E%3Cline x1='10' y1='9' x2='8' y2='9'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='16' y1='13' x2='8' y2='13'/%3E%3Cline x1='16' y1='17' x2='8' y2='17'/%3E%3Cline x1='10' y1='9' x2='8' y2='9'/%3E%3C/svg%3E");
}
.additional_menu_list li:nth-child(4) .additional_menu_item_link::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cpath d='M12 18v-6'/%3E%3Cpath d='m9 15 3 3 3-3'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cpath d='M12 18v-6'/%3E%3Cpath d='m9 15 3 3 3-3'/%3E%3C/svg%3E");
}
.additional_menu_list li:nth-child(5) .additional_menu_item_link::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}
.additional_menu_list li:nth-child(6) .additional_menu_item_link::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
}
.additional_menu_list li:nth-child(7) .additional_menu_item_link::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cline x1='12' y1='1' x2='12' y2='23'/%3E%3Cpath d='M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cline x1='12' y1='1' x2='12' y2='23'/%3E%3Cpath d='M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E");
}
.additional_menu_list li:nth-child(8) .additional_menu_item_link::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
}
.additional_menu_list li:nth-child(9) .additional_menu_item_link::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M15 9a5 5 0 0 0-6 0'/%3E%3Cpath d='M9 15a5 5 0 0 0 6 0'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M15 9a5 5 0 0 0-6 0'/%3E%3Cpath d='M9 15a5 5 0 0 0 6 0'/%3E%3C/svg%3E");
}
.additional_menu_list li:nth-child(10) .additional_menu_item_link::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
}
.additional_menu_list li:nth-child(11) .additional_menu_item_link::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 9.9-1'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 9.9-1'/%3E%3C/svg%3E");
}
.additional_menu_list li:nth-child(12) .additional_menu_item_link::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpolyline points='21 8 21 21 3 21 3 8'/%3E%3Crect x='1' y='3' width='22' height='5'/%3E%3Cline x1='10' y1='12' x2='14' y2='12'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpolyline points='21 8 21 21 3 21 3 8'/%3E%3Crect x='1' y='3' width='22' height='5'/%3E%3Cline x1='10' y1='12' x2='14' y2='12'/%3E%3C/svg%3E");
}
.additional_menu_list li:nth-child(13) .additional_menu_item_link::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='4' y='4' width='16' height='16' rx='2' ry='2'/%3E%3Crect x='9' y='9' width='6' height='6'/%3E%3Cline x1='9' y1='1' x2='9' y2='4'/%3E%3Cline x1='15' y1='1' x2='15' y2='4'/%3E%3Cline x1='9' y1='20' x2='9' y2='23'/%3E%3Cline x1='15' y1='20' x2='15' y2='23'/%3E%3Cline x1='20' y1='9' x2='23' y2='9'/%3E%3Cline x1='20' y1='14' x2='23' y2='14'/%3E%3Cline x1='1' y1='9' x2='4' y2='9'/%3E%3Cline x1='1' y1='14' x2='4' y2='14'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='4' y='4' width='16' height='16' rx='2' ry='2'/%3E%3Crect x='9' y='9' width='6' height='6'/%3E%3Cline x1='9' y1='1' x2='9' y2='4'/%3E%3Cline x1='15' y1='1' x2='15' y2='4'/%3E%3Cline x1='9' y1='20' x2='9' y2='23'/%3E%3Cline x1='15' y1='20' x2='15' y2='23'/%3E%3Cline x1='20' y1='9' x2='23' y2='9'/%3E%3Cline x1='20' y1='14' x2='23' y2='14'/%3E%3Cline x1='1' y1='9' x2='4' y2='9'/%3E%3Cline x1='1' y1='14' x2='4' y2='14'/%3E%3C/svg%3E");
}
.additional_menu_list li:nth-child(14) .additional_menu_item_link::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cellipse cx='12' cy='5' rx='9' ry='3'/%3E%3Cpath d='M21 12c0 1.66-4 3-9 3s-9-1.34-9-3'/%3E%3Cpath d='M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cellipse cx='12' cy='5' rx='9' ry='3'/%3E%3Cpath d='M21 12c0 1.66-4 3-9 3s-9-1.34-9-3'/%3E%3Cpath d='M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5'/%3E%3C/svg%3E");
}
.additional_menu_list li:nth-child(15) .additional_menu_item_link::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'/%3E%3Cline x1='12' y1='9' x2='12' y2='13'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'/%3E%3Cline x1='12' y1='9' x2='12' y2='13'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E");
}


.template_section,
.association_section,
.tools_section,
.visitor_section {
  margin: 30px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.template_card,
.association_card {
  margin: 0 auto;
  text-align: center;
}


.template_card_image,
.association_card_image{
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  border-radius: 8px;
  overflow: hidden;
}

.template_card_image:hover,
.association_card_image:hover,
.tools_grid_image:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tools_section {

}
.tools_section_header_title {

}

.tools_section_content {
  padding: 0;
}

.tools_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 400px;
  margin: 0 auto !important;
}

.tools_grid_item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tools_grid_link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  padding: 5px;
  border: 1px solid #8b5a3c;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.visitor_card img {
  width: 100%;
  height: auto;
}
figure,
.tools_section_content {
  margin: 0;
  border: solid 1px var(--secondary-color);
  border-radius: 0 0 10px 10px;
  padding: 10px;
}
/*================================== Structure Footer ==========================================*/
.pkp_structure_footer_wrapper {
  background: rgba(0, 0, 0, 0.05);
  border-top: none;
  border-bottom: none;
  padding: 0rem 10rem;
}
.pkp_structure_footer {
  width: auto;
}
.pkp_footer_content {
  padding: 20px 0px;
}
.pkp_footer_content a:hover {
  color: #3366cc;
  text-decoration: none;
}
.site-footer {
  padding: 0rem 1rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 40px;
}
.publisher-info-left {
  flex: 1;
  text-align: left;
}
.publisher-logo {
  margin-bottom: 15px;
}
.publisher-logo strong {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
  color: #000;
}
.publisher-logo a {
  display: inline-block;
}
.publisher-logo img {
  height: 60px;
  width: auto;
  background-color: #ffffff;
  padding: 5px;
  border-radius: 5px;
}
.publisher-name {
  margin-bottom: 10px;
}
.publisher-name a {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}
.publisher-name a:hover {
  text-decoration: underline;
}
.publisher-address {
  line-height: 1.6;
}
.publisher-address a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
}
.publisher-address a:hover {
  text-decoration: underline;
}
.publisher-logo-right {
  flex-shrink: 0;
}
.publisher-logo-right img {
  position: relative;
  height: 120px;
  width: auto;
  padding: 0;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #000;
  padding-top: 5px;
  gap: 1rem;
  flex-wrap: wrap;
}
.copyright {
  text-align: left;
  font-size: 13px !important;
  color: #000;
  font: initial;
}
.social-media {
  position: relative;
  display: flex;
  gap: 5px;
  right: -4px;
  justify-content: right;
  flex-wrap: wrap;
  margin-bottom: 0px;
}
.social-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.social-icon::before {
  content: '';
  width: 15px;
  height: 15px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}
.social-icon:hover::before {
  transform: scale(1.15);
}
.social-icon.facebook::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23000000' d='M20,10.1c0-5.5-4.5-10-10-10S0,4.5,0,10.1c0,5,3.7,9.1,8.4,9.9v-7H5.9v-2.9h2.5V7.9C8.4,5.4,9.9,4,12.2,4c1.1,0,2.2,0.2,2.2,0.2v2.5h-1.3c-1.2,0-1.6,0.8-1.6,1.6v1.9h2.8L13.9,13h-2.3v7C16.3,19.2,20,15.1,20,10.1z'/%3E%3C/svg%3E");
}
.social-icon.facebook:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%231877F2' d='M20,10.1c0-5.5-4.5-10-10-10S0,4.5,0,10.1c0,5,3.7,9.1,8.4,9.9v-7H5.9v-2.9h2.5V7.9C8.4,5.4,9.9,4,12.2,4c1.1,0,2.2,0.2,2.2,0.2v2.5h-1.3c-1.2,0-1.6,0.8-1.6,1.6v1.9h2.8L13.9,13h-2.3v7C16.3,19.2,20,15.1,20,10.1z'/%3E%3C/svg%3E");
}
.social-icon.twitter::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23000000' d='M15.3,1.9h2.8l-6.1,7L19,18.1h-5.6l-4.4-5.8l-5,5.8H1.2l6.5-7.4L1,1.9h5.8l4,5.3L15.3,1.9z M14.5,16.5h1.5L6.6,3.4H4.9L14.5,16.5z'/%3E%3C/svg%3E");
}
.social-icon.twitter:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23000000' d='M15.3,1.9h2.8l-6.1,7L19,18.1h-5.6l-4.4-5.8l-5,5.8H1.2l6.5-7.4L1,1.9h5.8l4,5.3L15.3,1.9z M14.5,16.5h1.5L6.6,3.4H4.9L14.5,16.5z'/%3E%3C/svg%3E");
}
.social-icon.instagram::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle fill='%23000000' cx='10' cy='10' r='3.3'/%3E%3Cpath fill='%23000000' d='M14.2,0H5.8C2.6,0,0,2.6,0,5.8v8.3C0,17.4,2.6,20,5.8,20h8.3c3.2,0,5.8-2.6,5.8-5.8V5.8C20,2.6,17.4,0,14.2,0zM10,15c-2.8,0-5-2.2-5-5s2.2-5,5-5s5,2.2,5,5S12.8,15,10,15z M15.8,5C15.4,5,15,4.6,15,4.2s0.4-0.8,0.8-0.8s0.8,0.4,0.8,0.8S16.3,5,15.8,5z'/%3E%3C/svg%3E");
}
.social-icon.instagram:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cdefs%3E%3ClinearGradient id='ig' x1='0%25' y1='100%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23FD5949'/%3E%3Cstop offset='50%25' style='stop-color:%23D6249F'/%3E%3Cstop offset='100%25' style='stop-color:%23285AEB'/%3E%3C/linearGradient%3E%3C/defs%3E%3Ccircle fill='url(%23ig)' cx='10' cy='10' r='3.3'/%3E%3Cpath fill='url(%23ig)' d='M14.2,0H5.8C2.6,0,0,2.6,0,5.8v8.3C0,17.4,2.6,20,5.8,20h8.3c3.2,0,5.8-2.6,5.8-5.8V5.8C20,2.6,17.4,0,14.2,0zM10,15c-2.8,0-5-2.2-5-5s2.2-5,5-5s5,2.2,5,5S12.8,15,10,15z M15.8,5C15.4,5,15,4.6,15,4.2s0.4-0.8,0.8-0.8s0.8,0.4,0.8,0.8S16.3,5,15.8,5z'/%3E%3C/svg%3E");
}
.social-icon.linkedin::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23000000' d='M18.6,0H1.4C0.6,0,0,0.6,0,1.4v17.1C0,19.4,0.6,20,1.4,20h17.1c0.8,0,1.4-0.6,1.4-1.4V1.4C20,0.6,19.4,0,18.6,0z M6,17.1h-3V7.6h3L6,17.1L6,17.1zM4.6,6.3c-1,0-1.7-0.8-1.7-1.7s0.8-1.7,1.7-1.7c0.9,0,1.7,0.8,1.7,1.7C6.3,5.5,5.5,6.3,4.6,6.3z M17.2,17.1h-3v-4.6c0-1.1,0-2.5-1.5-2.5c-1.5,0-1.8,1.2-1.8,2.5v4.7h-3V7.6h2.8v1.3h0c0.4-0.8,1.4-1.5,2.8-1.5c3,0,3.6,2,3.6,4.5V17.1z'/%3E%3C/svg%3E");
}
.social-icon.linkedin:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%230A66C2' d='M18.6,0H1.4C0.6,0,0,0.6,0,1.4v17.1C0,19.4,0.6,20,1.4,20h17.1c0.8,0,1.4-0.6,1.4-1.4V1.4C20,0.6,19.4,0,18.6,0z M6,17.1h-3V7.6h3L6,17.1L6,17.1zM4.6,6.3c-1,0-1.7-0.8-1.7-1.7s0.8-1.7,1.7-1.7c0.9,0,1.7,0.8,1.7,1.7C6.3,5.5,5.5,6.3,4.6,6.3z M17.2,17.1h-3v-4.6c0-1.1,0-2.5-1.5-2.5c-1.5,0-1.8,1.2-1.8,2.5v4.7h-3V7.6h2.8v1.3h0c0.4-0.8,1.4-1.5,2.8-1.5c3,0,3.6,2,3.6,4.5V17.1z'/%3E%3C/svg%3E");
}
.social-icon.youtube::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23000000' d='M15,0H5C2.2,0,0,2.2,0,5v10c0,2.8,2.2,5,5,5h10c2.8,0,5-2.2,5-5V5C20,2.2,17.8,0,15,0z M14.5,10.9l-6.8,3.8c-0.1,0.1-0.3,0.1-0.5,0.1c-0.5,0-1-0.4-1-1l0,0V6.2c0-0.5,0.4-1,1-1c0.2,0,0.3,0,0.5,0.1l6.8,3.8c0.5,0.3,0.7,0.8,0.4,1.3C14.8,10.6,14.6,10.8,14.5,10.9z'/%3E%3C/svg%3E");
}
.social-icon.youtube:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23FF0000' d='M15,0H5C2.2,0,0,2.2,0,5v10c0,2.8,2.2,5,5,5h10c2.8,0,5-2.2,5-5V5C20,2.2,17.8,0,15,0z M14.5,10.9l-6.8,3.8c-0.1,0.1-0.3,0.1-0.5,0.1c-0.5,0-1-0.4-1-1l0,0V6.2c0-0.5,0.4-1,1-1c0.2,0,0.3,0,0.5,0.1l6.8,3.8c0.5,0.3,0.7,0.8,0.4,1.3C14.8,10.6,14.6,10.8,14.5,10.9z'/%3E%3C/svg%3E");
}
.social-icon.threads::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23000000' d='M10.7 10.2c.5 0 1 .1 1.5.2-.1 1.1-.5 2.2-1.9 2.3-.6 0-1.1-.1-1.5-.5-.2-.2-.3-.4-.3-.9 0-.3.2-.6.5-.8.5-.2 1-.3 1.7-.3zM20 10c0 4.8 0 7.3-1.4 8.6C17.3 20 14.8 20 10 20s-7.3 0-8.6-1.4C0 17.3 0 14.8 0 10c0-4.9 0-7.3 1.4-8.6C2.7 0 5.1 0 10 0c4.9 0 7.3 0 8.6 1.4C20 2.7 20 5.2 20 10zM6.4 5.2c.9-.9 2.1-1.4 3.8-1.4 3.7 0 4.8 2.6 5 3.7l1.3-.3c-.3-1.1-1.6-4.7-6.3-4.7-2 0-3.5.6-4.7 1.8-1.3 1.4-2 3.5-1.9 6.2.1 4.4 2.6 7 6.5 7 3.3 0 5.7-1.9 5.7-4.5 0-1.7-.8-2.9-2.4-3.6-.2-2.4-1.6-3.3-3-3.4-2.2-.1-3 1.4-3.1 1.5l1.1.6s.5-.9 1.9-.8c.6 0 1.5.3 1.7 1.7-1.4-.3-2.8-.1-3.7.4-.6.4-1 1-1.1 1.7-.1.7.1 1.4.6 1.9.6.6 1.5 1 2.5.9 1.7-.1 2.7-1.3 3-3.1.8.5 1.1 1.1 1.1 2.2 0 1.8-1.9 3.2-4.4 3.2-4.6 0-5.2-4-5.2-5.7 0-1.7.2-3.9 1.6-5.3z'/%3E%3C/svg%3E");
}
.social-icon.threads:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23000000' d='M10.7 10.2c.5 0 1 .1 1.5.2-.1 1.1-.5 2.2-1.9 2.3-.6 0-1.1-.1-1.5-.5-.2-.2-.3-.4-.3-.9 0-.3.2-.6.5-.8.5-.2 1-.3 1.7-.3zM20 10c0 4.8 0 7.3-1.4 8.6C17.3 20 14.8 20 10 20s-7.3 0-8.6-1.4C0 17.3 0 14.8 0 10c0-4.9 0-7.3 1.4-8.6C2.7 0 5.1 0 10 0c4.9 0 7.3 0 8.6 1.4C20 2.7 20 5.2 20 10zM6.4 5.2c.9-.9 2.1-1.4 3.8-1.4 3.7 0 4.8 2.6 5 3.7l1.3-.3c-.3-1.1-1.6-4.7-6.3-4.7-2 0-3.5.6-4.7 1.8-1.3 1.4-2 3.5-1.9 6.2.1 4.4 2.6 7 6.5 7 3.3 0 5.7-1.9 5.7-4.5 0-1.7-.8-2.9-2.4-3.6-.2-2.4-1.6-3.3-3-3.4-2.2-.1-3 1.4-3.1 1.5l1.1.6s.5-.9 1.9-.8c.6 0 1.5.3 1.7 1.7-1.4-.3-2.8-.1-3.7.4-.6.4-1 1-1.1 1.7-.1.7.1 1.4.6 1.9.6.6 1.5 1 2.5.9 1.7-.1 2.7-1.3 3-3.1.8.5 1.1 1.1 1.1 2.2 0 1.8-1.9 3.2-4.4 3.2-4.6 0-5.2-4-5.2-5.7 0-1.7.2-3.9 1.6-5.3z'/%3E%3C/svg%3E");
}
.pkp_brand_footer {
  display: none;
}

/* ======================================== EDITORIAL TEAM SECTION ======================================== */

.editorial-team {
    max-width: 1200px;
    padding: 0;
}

.editorial-section {
    padding: 0px;
}

.editorial-section-title {
  color: #000;
  margin-bottom: 10px !important;
}

.editorial-link-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #000;
    border: 1px solid rgba(255, 255, 255, 0.3);
}


.editorial-member-info {
    display: flex;
    flex-direction: column;
    margin: 20px 0px;
}

.editorial-member-name,
.editorial-member-affiliation {
    color: #000;
    margin: 5px 0px !important;
}

.editorial-member-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.editorial-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    border: 1px solid #ddd;
}

.editorial-link-btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}
.gender-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

.editorial-member-name[data-gender="male"]::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
    background-image: url("/public/images/male.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.editorial-member-name[data-gender="female"]::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
    background-image: url("/public/images/female.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.editorial-member-affiliation[data-country]::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 16px;
    margin-left: 8px;
    vertical-align: middle;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #ddd;
    border-radius: 2px;
}
.editorial-member-affiliation[data-country="indonesia"]::after {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA5MDAgNjAwIj48cmVjdCB3aWR0aD0iOTAwIiBoZWlnaHQ9IjYwMCIgZmlsbD0iI2ZmZiIvPjxyZWN0IHdpZHRoPSI5MDAiIGhlaWdodD0iMzAwIiBmaWxsPSIjZmYwMDAwIi8+PC9zdmc+');
}
.editorial-member-affiliation[data-country="oman"]::after {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA5MDAgNjAwIj48cmVjdCB3aWR0aD0iOTAwIiBoZWlnaHQ9IjYwMCIgZmlsbD0iI2ZmZiIvPjxyZWN0IHdpZHRoPSI5MDAiIGhlaWdodD0iMjAwIiBmaWxsPSIjZmYwMDAwIi8+PHJlY3Qgd2lkdGg9IjkwMCIgaGVpZ2h0PSIyMDAiIHk9IjQwMCIgZmlsbD0iIzAwN2EzZCIvPjxyZWN0IHdpZHRoPSIzMDAiIGhlaWdodD0iNjAwIiBmaWxsPSIjZWQwMDAwIi8+PC9zdmc+');
}
.editorial-member-affiliation[data-country="uae"]::after {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA5MDAgNjAwIj48cmVjdCB3aWR0aD0iOTAwIiBoZWlnaHQ9IjYwMCIgZmlsbD0iI2ZmZiIvPjxyZWN0IHdpZHRoPSI5MDAiIGhlaWdodD0iMjAwIiBmaWxsPSIjMDA3MzJmIi8+PHJlY3Qgd2lkdGg9IjkwMCIgaGVpZ2h0PSIyMDAiIHk9IjQwMCIgZmlsbD0iIzAwMDAwMCIvPjxyZWN0IHdpZHRoPSIzMDAiIGhlaWdodD0iNjAwIiBmaWxsPSIjZWUwMDAwIi8+PC9zdmc+');
}
.editorial-link-btn[class*="editorial-"]::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}
.editorial-link-btn.editorial-scholar::before { 
  background-image: url("/public/images/gs.png"); 
}
.editorial-link-btn.editorial-scopus::before { 
  background-image: url("/public/images/sc.png"); 
}
.editorial-link-btn.editorial-orcid::before { 
  background-image: url("/public/images/orcid.png"); 
}
.editorial-link-btn.editorial-wos::before { 
  background-image: url("/public/images/WoS.png"); 
}
.editorial-link-btn.editorial-sinta::before { 
  background-image: url("/public/images/sinta.png"); 
}
.editorial-link-btn.editorial-scholar {
    background: #e8f0fe;
    color: #1a73e8;
    border-color: #d2e3fc;
}
.editorial-link-btn.editorial-scholar:hover {
    background: #1a73e8;
    color: white;
    border-color: #1a73e8;
}
.editorial-link-btn.editorial-scopus {
    background: #fff5ed;
    color: #FF8200;
    border-color: #fdd6b3;
}
.editorial-link-btn.editorial-scopus:hover {
    background: #FF8200;
    color: white;
    border-color: #FF8200;
}
.editorial-link-btn.editorial-orcid {
    background: #f4fce3;
    color: #7eb524;
    border-color: #d9f0a3;
}
.editorial-link-btn.editorial-orcid:hover {
    background: #A6CE39;
    color: white;
    border-color: #A6CE39;
}
.editorial-link-btn.editorial-wos {
    background: #e3f2fd;
    color: #0f67b1;
    border-color: #bbdefb;
}
.editorial-link-btn.editorial-wos:hover {
    background: #0f67b1;
    color: white;
    border-color: #0f67b1;
}
.editorial-link-btn.editorial-sinta {
    background: #fce4ec;
    color: #e91e63;
    border-color: #f8bbd0;
}
.editorial-link-btn.editorial-sinta:hover {
    background: #e91e63;
    color: white;
    border-color: #e91e63;
}

/* === TABLET PORTRAIT (768px - 991px) === */
@media screen and (max-width: 991px) {
  .pkp_structure_main {
    width: 100%;
    padding-top: 20px;
  }

  .pkp_structure_sidebar {
    width: 100%;
    padding-top: 20px;
  }
  
  /* Journal Card */
  .journal-card {
    flex-direction: column;
    align-items: center;
  }
  
  .journal-image-container {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .journal-cover {
    width: 220px;
  }
  
  .journal-title {
    font-size: 28px !important;
  }
  
  .journal-info {
    text-align: left;
    width: 100%;
  }
  
  /* Current Issue */
  .heading {
    flex-direction: column;
    align-items: center;
  }
  
  .cover {
    margin-bottom: 20px;
  }
  
  .cover img {
    max-width: 200px;
  }
  
  .description {
    text-align: center;
  }
  
  /* Article List */
  .obj_article_summary .title {
    font-size: 1.2rem;
  }
}

/* === MOBILE LANDSCAPE (576px - 767px) === */
@media screen and (max-width: 767px) {
  /* Navigation */
  .pkp_site_nav_menu,
  .pkp_navigation_user_wrapper {
    padding: 0 20px;
  }
  
  .pkp_navigation_primary {
    flex-direction: column;
    width: 100%;
  }
  
  .pkp_navigation_primary li {
    width: 100%;
    border-bottom: none;
  }
  
  .pkp_navigation_primary li a {
    padding: 0.8rem 1rem;
    font-size: 13px;
  }
  
  .pkp_navigation_search_wrapper {
    margin-left: 0;
    margin-top: 0px;
    width: 100%;
    border-top: none;
  }
  
  .pkp_search {
    width: 100%;
    justify-content: center;
  }
  
  .pkp_navigation_user {
    flex-direction: column;
    align-items: flex-start;
    border-top: none !important;
  }
  
  .pkp_navigation_user li {
    width: 100%;
  }
  
  /* Content */
  .pkp_structure_content {
    width: 100%;
    padding: 0 15px;
  }
  
  .pkp_structure_main {
    padding: 15px 0;
  }
  
  /* Journal Card */
  .journal-card {
    padding: 15px;
  }
  
  .journal-cover {
    width: 180px;
  }
  
  .journal-title {
    font-size: 24px !important;
    padding-bottom: 10px;
  }
  
  .info-item {
    line-height: 22px !important;
    margin: 10px 0 !important;
    font-size: 13px;
  }
  .submit-button-container {
    text-align: center;
  }
  
  .btn-submit {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  /* Current Issue */
  .current_issue h2 {
    font-size: 1.3rem;
    margin-top: 2rem;
  }
  
  .current_issue_title {
    font-size: 1rem !important;
    padding: 0 0.8rem !important;
  }
  
  .cover img {
    max-width: 160px;
  }
  
  .description p {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .description img {
    width: 40px;
  }
  
  .section h3 {
    font-size: 1rem !important;
    padding: 0 0.8rem !important;
  }
  
  /* Article List */
  .cmp_article_list li {
    padding: 12px;
  }
  
  .obj_article_summary .title {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .authors {
    font-size: 0.9rem;
    padding-left: 20px;
  }
  
  .pages {
    font-size: 0.85rem;
    padding: 4px 8px;
  }
  
  .obj_galley_link {
    padding: 4px 12px;
    font-size: 0.85rem;
  }
  
  .read_more {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
  
  /* Sidebar */
  .additional_menu_header,
  .template_section_header_title,
  .association_section_header_title,
  .tools_section_header_title,
  .visitor_section_header_title {
    font-size: 14px;
  }

  .additional_menu_item {
    padding: 0 !important;
  }

  .additional_menu_item_link {
    font-size: 14px;
    padding: 8px !important;
  }
}

/* === MOBILE PORTRAIT LARGE (481px - 575px) === */
@media screen and (max-width: 575px) {
  .dropdown-menu {
    min-width: 180px;
  }
  
  .dropdown-menu li a {
    font-size: 12px;
    padding: 10px 20px;
  }
  
  /* Content */
  .pkp_structure_content {
    padding: 0 10px;
  }
  
  /* Journal Card */
  .journal-card {
    padding: 12px;
  }
  
  .journal-cover {
    width: 100%;
  }
  
  .journal-title {
    font-size: 22px !important;
  }
  
  .info-item {
    font-size: 12px;
    line-height: 20px !important;
    margin: 8px 0 !important;
  }
  
  .submit-button-container {
    text-align: center;
  }
  
  .index-logo {
    width: 100px;
    height: auto;
    margin: 0 5px;
  }
  
  /* Current Issue */
  .current_issue h2 {
    font-size: 1.2rem;
  }
  
  .current_issue_title {
    font-size: 0.95rem !important;
  }
  
  .cover img {
    max-width: 140px;
  }
  
  .description p {
    font-size: 0.95rem;
  }
  
  .description img {
    width: 35px;
  }
  
  /* Article List */
  .cmp_article_list li {
    padding: 10px;
    border-radius: 15px;
  }
  
  .obj_article_summary .title {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .authors {
    font-size: 0.85rem;
    padding-left: 15px;
  }
  
  .pages {
    font-size: 0.8rem;
  }
  
  .galleys_links li {
    margin: 15px 0 !important;
  }
  
  .obj_galley_link {
    padding: 4px 10px;
    font-size: 0.8rem;
  }
  
  .read_more {
    padding: 10px 25px;
    font-size: 0.85rem;
  }
  
  /* Sidebar */
  .additional_menu_item {
    padding: 0 !important;
  }
  .additional_menu_item_link {
    font-size: 13px;
    padding: 7px !important;
  }
  
  .additional_menu_item_link::before {
    width: 18px;
    height: 18px;
  }
}

/* === MOBILE PORTRAIT MEDIUM (376px - 480px) === */
@media screen and (max-width: 480px) {
  /* Journal Card */
  .journal-card {
    padding: 10px;
  }
  
  .journal-cover {
    width: 100%;
  }
  
  .journal-title {
    font-size: 20px !important;
  }
  
  .info-item {
    font-size: 11px;
    line-height: 18px !important;
  }
  
  .btn-submit {
    padding: 6px 10px;
    font-size: 12px;
  }
  
  .index-logo {
    width: 90px;
    margin: 0 4px;
  }
  
  /* Current Issue */
  .current_issue h2 {
    font-size: 1.1rem;
    padding: 8px;
  }
  
  .current_issue_title {
    font-size: 0.9rem !important;
    padding: 0 0.6rem !important;
    line-height: 2rem;
  }
  
  .heading {
    padding: 15px;
  }
  
  .cover img {
    max-width: 120px;
  }
  
  .description p {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
  
  .description img {
    width: 30px;
  }
  
  .section h3 {
    font-size: 0.95rem !important;
    padding: 0 0.6rem !important;
    line-height: 2rem;
  }
  
  /* Article List */
  .cmp_article_list li {
    padding: 8px;
    margin-bottom: 10px;
  }
  
  .obj_article_summary .title {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  
  .meta {
    padding-bottom: 12px;
  }
  
  .authors {
    font-size: 0.8rem;
    padding-left: 12px;
  }
  
  .pages {
    font-size: 0.75rem;
    padding: 3px 7px;
  }
  
  .obj_galley_link {
    padding: 3px 8px;
    font-size: 0.75rem;
  }
  
  .read_more {
    padding: 10px 20px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
  }
  
  /* Sidebar */
  .pkp_structure_sidebar {
    padding-top: 15px;
  }
  
  .additional_menu_header,
  .template_section_header_title,
  .association_section_header_title,
  .tools_section_header_title,
  .visitor_section_header_title {
    font-size: 13px;
    padding: 4px 8px !important;
  }
  
  .additional_menu_item {
    padding: 0 !important;
  }
  
  .additional_menu_item_link {
    font-size: 12px;
    padding: 6px !important;
  }
  
  .additional_menu_item_link::before {
    width: 16px;
    height: 16px;
  }
}

/* === MOBILE PORTRAIT SMALL (321px - 375px) === */
@media screen and (max-width: 375px) {
  /* Journal Card */
  .journal-cover {
    width: 100%;
  }
  
  .journal-title {
    font-size: 18px !important;
  }
  
  .info-item {
    font-size: 10px;
    line-height: 16px !important;
    margin: 6px 0 !important;
  }
  .submit-button-container {
    text-align: center;
  }
  
  .btn-submit {
    padding: 5px 8px;
    font-size: 11px;
  }
  
  .index-logo {
    width: 80px;
    margin: 5px 3px;
  }
  
  /* Current Issue */
  .current_issue h2 {
    font-size: 1rem;
    padding: 6px;
  }
  
  .current_issue_title {
    font-size: 0.85rem !important;
    padding: 0 0.5rem !important;
  }
  
  .heading {
    padding: 12px;
  }
  
  .cover img {
    max-width: 100px;
  }
  
  .description p {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
  
  .description img {
    width: 28px;
  }
  
  .section h3 {
    font-size: 0.9rem !important;
    padding: 0 0.5rem !important;
  }
  
  /* Article List */
  .cmp_article_list li {
    padding: 7px;
    border-radius: 12px;
  }
  
  .obj_article_summary .title {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
  
  .authors {
    font-size: 0.75rem;
    padding-left: 10px;
  }
  
  .pages {
    font-size: 0.7rem;
    padding: 2px 6px;
  }
  
  .galleys_links li {
    margin: 12px 0 !important;
  }
  
  .obj_galley_link {
    padding: 3px 7px;
    font-size: 0.7rem;
  }
  
  .read_more {
    padding: 8px 18px;
    font-size: 0.75rem;
  }
  
  /* Sidebar */
  .additional_menu_item {
    padding: 0 !important;
  }
  .additional_menu_item_link {
    font-size: 11px;
    padding: 5px !important;
  }
  
  .additional_menu_item_link::before {
    width: 14px;
    height: 14px;
  }
}

/* === MOBILE PORTRAIT EXTRA SMALL (≤320px) === */
@media screen and (max-width: 320px) {
  /* Content */
  .pkp_structure_content {
    padding: 0 8px;
  }
  
  /* Journal Card */
  .journal-card {
    padding: 5px;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .journal-cover {
    width: 100%;
  }
  
  .journal-title {
    font-size: 16px !important;
  }
  
  .info-item {
    font-size: 9px;
    line-height: 14px !important;
    margin: 5px 0 !important;
  }
  .submit-button-container {
    text-align: center;
  }
  .btn-submit {
    padding: 4px 7px;
    font-size: 10px;
    min-height: auto;
  }
  .description-text {
    font-size: 10px;
    line-height: 15px !important;
  }
  
  .index-logo {
    width: 70px;
    margin: 4px 2px;
  }
  
  /* Current Issue */
  .current_issue h2 {
    font-size: 15px;
    padding: 0px;
  }
  
  .current_issue_title {
    font-size: 10px !important;
    padding: 5px !important;
    line-height: normal;
  }
  
  .heading {
    padding: 10px;
  }
  
  .cover img {
    max-width: 90px;
  }
  
  .description {
    text-align: left;
  }
  .description p {
    font-size: 0.8rem;
    margin-bottom: 0;
  }
  
  .description img {
    width: 25px;
  }
  
  .section h3 {
    font-size: 10px !important;
    padding: 5px !important;
    line-height: normal;
    font-weight: 400;
  }
  
  /* Article List */
  .cmp_article_list li {
    padding: 6px;
    margin-bottom: 8px;
  }
  
  .obj_article_summary .title {
    font-size: 10px;
    margin-bottom: 7px;
    text-align: justify;
  }
  
  .meta {
    padding-bottom: 10px;
  }
  
  .authors {
    font-size: 0.7rem;
    padding-left: 8px;
    display: block;
  }
  
  .pages {
    font-size: 10px;
    border-radius: 10px;
    display: inline-block;
    font-weight: 400;
    padding: 0px 4px;
  }
  
  .galleys_links li {
    margin: 10px 0 !important;
  }
  
  .obj_galley_link {
    padding: 2px 6px;
    font-size: 0.65rem;
    border-radius: 20px;
    min-height: auto;
  }
  
  .read_more {
    padding: 7px 15px;
    font-size: 0.7rem 9.8px !important;
    border-radius: 25px;
    margin-top: 10px;
  }
  
  /* Sidebar */
  .pkp_structure_sidebar {
    padding-top: 12px;
  }
  
  .additional_menu_header,
  .template_section_header_title,
  .association_section_header_title,
  .tools_section_header_title,
  .visitor_section_header_title {
    font-size: 12px;
    padding: 3px 6px !important;
  }
  .additional_menu_item {
    padding: 0 !important;
  }
  
  .additional_menu_item_link {
    font-size: 10px;
    padding: 4px !important;
  }
  
  .additional_menu_item_link::before {
    width: 12px;
    height: 12px;
  }
}

/* === OPTIMASI UMUM UNTUK SEMUA MOBILE === */
@media screen and (max-width: 767px) {
  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }
  
  /* Better text readability */
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  /* Hide hover effects on touch devices */
  .cmp_article_list li:hover {
    transform: none;
  }
  
  .read_more:hover {
    transform: none;
  }
  
  /* Optimize animations for mobile */
  * {
    animation-duration: 0.3s !important;
    transition-duration: 0.3s !important;
  }
}

/* === FIX UNTUK DROPDOWN MENU DI MOBILE === */
@media screen and (max-width: 767px) {
  .dropdown-menu {
    position: relative !important;
    display: none;
    width: 100%;
    margin-top: 0;
    border-radius: 0;
    box-shadow: none !important;
    border: none;
    background: rgba(74, 44, 28, 0.9) !important;
  }
  
  .pkp_navigation_primary li:hover .dropdown-menu,
  .pkp_navigation_user > li:hover .dropdown-menu {
    display: block;
  }
  
  .dropdown-menu li a {
    padding: 10px 15px;
    border-left: 3px solid transparent;
  }
  
  .dropdown-menu li a:hover {
    border-left-color: var(--accent-color);
  }
}

/* ========================================   PERBAIKAN RESPONSIF MOBILE & TABLET   Kanuun: Journal of Sharia, Law, and Digital Society   ======================================== */

/* === FIX: Header Logo Responsif === */
@media screen and (max-width: 768px) {
  .pkp_site_name_wrapper {
    height: 9.3rem;
  }
  .pkp_site_name {
    left: 0;
    height: 100%;
    width: 100% !important;
    padding-left: 45px;
  }
  .pkp_site_name .is_img img {
    max-height: 100%;
    max-width: 100%;
  }
  .pkp_site_nav_toggle {
    min-width: 44px;
    min-height: 69px;
  }
}

@media screen and (max-width: 480px) {
  .pkp_site_name_wrapper {
    height: 4.91rem;
  }
}

@media screen and (max-width: 375px) {
  .pkp_site_name_wrapper {
    height: 4.26rem;
  }
}

@media screen and (max-width: 320px) {
  .pkp_site_name_wrapper {
    height: 3.55rem;
  }
}
/* === FIX: Navigation Menu Padding === */
@media screen and (max-width: 991px) {
  .pkp_site_nav_menu,
  .pkp_navigation_user_wrapper {
    padding: 0 20px !important;
  }
}

@media screen and (max-width: 767px) {
  .pkp_site_nav_menu,
  .pkp_navigation_user_wrapper {
    padding: 0 15px !important;
  }
  
  .pkp_navigation_primary_wrapper {
    padding: 0 !important;
  }
}

@media screen and (max-width: 480px) {
  .pkp_site_nav_menu,
  .pkp_navigation_user_wrapper {
    padding: 0 10px !important;
  }
}

/* === FIX: Footer Mobile Layout === */
@media screen and (max-width: 991px) {
  .pkp_structure_footer_wrapper {
    padding: 0 40px !important;
  }
}

@media screen and (max-width: 767px) {
  .pkp_structure_footer_wrapper {
    padding: 0 20px !important;
  }
  
  .footer-top {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
  }
  
  .publisher-info-left {
    text-align: center !important;
  }
  
  .publisher-logo-right {
    text-align: center !important;
  }
  
  .publisher-logo-right img {
    height: 100px !important;
  }
  
  .footer-bottom {
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
    text-align: center;
  }
  
  .copyright {
    text-align: center !important;
  }
  
  .social-media-wrapper {
    width: 100%;
  }
  
  .social-media {
    justify-content: center !important;
    right: 0 !important;
  }
}

@media screen and (max-width: 480px) {
  .pkp_structure_footer_wrapper {
    padding: 0 15px !important;
  }
  
  .publisher-logo-right img {
    height: 80px !important;
  }
  
  .copyright {
    font-size: 12px !important;
  }
  
  .social-icon {
    width: 18px !important;
    height: 18px !important;
  }
  
  .social-icon::before {
    width: 14px !important;
    height: 14px !important;
  }
}

@media screen and (max-width: 375px) {
  .publisher-logo-right img {
    height: 70px !important;
  }
  
  .copyright {
    font-size: 11px !important;
  }
}

@media screen and (max-width: 320px) {
  .pkp_structure_footer_wrapper {
    padding: 0 10px !important;
  }
  
  .publisher-logo-right img {
    height: 60px !important;
  }
  
  .copyright {
    font-size: 10px !important;
  }
  
  .social-icon {
    width: 16px !important;
    height: 16px !important;
  }
  
  .social-icon::before {
    width: 12px !important;
    height: 12px !important;
  }
}
/* ========================================   PERBAIKAN TEXT-ALIGN  ======================================== */
p {
    TEXT-ALIGN: JUSTIFY;
}
h1.page_title {
    TEXT-ALIGN: left;
}
/* Icon untuk authors di TOC - selalu pakai icon single (👤) */
.meta .authors::before,
.obj_article_summary .authors::before {
  content: '👤';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
}

/* Authors - untuk halaman detail artikel (ul list) */
.item.authors {
  list-style: none;
  padding-left: 0;
}

.item.authors li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.item.authors li::before {
  content: '👤';
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.1rem;
}