#customblock-crtewus-journals .content {
  background: aliceblue;
  padding: 15px;
  border-radius: 10px;
}

.pkp_block.block_custom .content p {
    margin: 15px 0;
    padding: 10px;
    background: #ffffff;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.pkp_block.block_custom .content p:hover {
    background: #e9ecef;
}

.pkp_block.block_custom .content p a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-right: 20px;
    transition: color 0.3s, padding-right 0.3s;
}

.pkp_block.block_custom .content p a::after {
  content: "→";
  position: absolute;
  right: 0;
  opacity: 0;
  transition: opacity 0.3s, right 0.3s;
  color: crimson;
  font-size: 30px;
  top: -10px;
  left: calc(70%);
}

.pkp_block.block_custom .content p a:hover {
    color: #0056b3;
    padding-right: 30px;
}

.pkp_block.block_custom .content p a:hover::after {
    right: 10px;
    opacity: 1;
}


.title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 3px solid #f9f9f9;
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: #343a40;
}

.page_contact {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'Roboto', sans-serif;
  color: #333;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.separator {
  margin: 0 5px;
  color: #aaa;
}

.page_contact h1 {
  font-size: 2.2em;
  color: #1e6292;
  margin-bottom: 20px;
  text-align: left;
  border-bottom: 2px solid #f0a500;
  padding-bottom: 10px;
}

.contact_section .address{
  flex: 1;
  min-width: 300px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
}

.contact_section .address {
  font-size: 1em;
  line-height: 1.6;
}

.contact.primary{ 
  padding: 15px;
  padding-right: 15px;
  min-width: 300px;
  min-height: 300px;
  background: white;
  border-radius: 10px;
  border-right: 2px solid antiquewhite;
}

.contact.support{ 
  padding: 15px;
  padding-right: 15px;
  min-width: 300px;
  min-height: 300px;
  background: white;
  border-radius: 10px;
  border-left: 2px solid antiquewhite;
}

.contact_section .contact h3 {
  font-size: 1.4em;
  color: #1e6292;
  margin-bottom: 15px;
}

.contact_section .contact .name {
  font-weight: bold;
  margin-bottom: 10px;
  color: #324cb0;
}

.contact_section .contact .phone,
.contact_section .contact .email {
  margin-bottom: 10px;
}

.contact_section .contact .phone .label,
.contact_section .contact .email .label {
  font-weight: bold;
  margin-right: 5px;
  color: #555;
}

.contact_section .contact .phone .value,
.contact_section .contact .email .value {
  color: #000;
}

.contact_section .contact .email a {
  color: #1e6292;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact_section .contact .email a:hover {
  color: #324cb0;
}



.pkp_structure_head {
  background: radial-gradient(circle at top right, #1e6292, #324cb0, #1e6292);
  color: #fff;
  font-size: 1.1em;
  position: relative;
}

.pkp_structure_head:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
  mix-blend-mode: overlay;
  transform: rotate(-5deg);
  transform-origin: top left;
  animation: moveOverlay 7s infinite linear;
}

@keyframes moveOverlay {
  0% {
    transform: rotate(-5deg) translateX(0) translateY(0);
  }
  50% {
    transform: rotate(-5deg) translateX(60px) translateY(20px);
  }
  100% {
    transform: rotate(-5deg) translateX(0) translateY(0);
  }
}


.#pkp_structure_head {
  #background-color: #1e6292;
  #border-bottom: 0px solid #ddd !important;
  #font-size: 1.1rem !important;
}

#navigationUser .profile {
  text-transform: uppercase;
}

.pkp_brand_footer{
  display: none;
}


.copyright-crt {
  text-align: center;
  font-size: 14px;
  color: #555555;
  padding: 15px 0;
  background-color: #f1f1f1;
  border-top: 1px solid #dddddd;
  margin-top: 20px;
  font-family: 'Arial', sans-serif;
}

.copyright-crt::before {
  content: "© ";
  font-weight: bold;
}

.copyright-crt:hover {
  color: #007bff;
  transition: color 0.3s ease;
}


.pkp_footer_content_crt {
  padding: 20px;
  #background-color: #f8f9fa;
  display: flex;
  #justify-content: center;
}

.pkp_footer_content__wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.pkp_footer_content__image {
  flex-shrink: 0;
  width: 50%;
}

.pkp_footer_content__image img {
  width: 250px;
  height: auto;
}

.pkp_footer_content__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 150px;
}

.pkp_footer_content__text p {
  margin: 2px;
  padding: 5px;
  background: white;
  border-radius: 5px;
  font-size: 16px;
  margin-bottom: 15px;
  position: relative;
  transition: color 0.3s ease;
  justify-content: center;
  display: flex;
}

.pkp_footer_content__text p:hover {
  font-weight: bold;
}

.pkp_footer_content__text a {
  color: #007bff;
  text-decoration: none;
}



.page_editorial_team {
  background-color: #f9f9f9;
  padding: 20px;
  font-family: 'Arial', sans-serif;
}

nav.cmp_breadcrumbs {
  margin-bottom: 20px;
}

nav.cmp_breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

nav.cmp_breadcrumbs ol li {
  margin-right: 5px;
  font-size: 14px;
  color: #555;
}

nav.cmp_breadcrumbs ol li a {
  color: #007bff;
  text-decoration: none;
}

nav.cmp_breadcrumbs ol li.current span {
  font-weight: bold;
  color: #333;
}

.page_editorial_team h1 {
  font-size: 28px;
  color: #333;
  border-bottom: 2px solid #007bff;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.cmp_edit_link {
  display: inline-block;
  margin-bottom: 20px;
  color: #ffffff;
  background-color: #007bff;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.cmp_edit_link:hover {
  background-color: #0056b3;
}

.page_editorial_team p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
}

.page_editorial_team p strong {
  color: #007bff;
  font-weight: bold;
  font-size: 18px;
  padding-left: 10px;
  border-left: 3px solid #007bff;
}

.page_editorial_team p:not(:last-of-type) {
  margin-bottom: 20px;
}





.pkp_navigation_primary_wrapper {
  background-color: #007bff;
  padding: 20px;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  margin-top: 15px;
}

p {
  text-align: justify;
}

.rtejustify {
  text-align: justify;
}

.pkp_block.block_information .content {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
}

.pkp_block.block_information .content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.pkp_block.block_information .content ul li {
  margin-bottom: 12px;
  padding: 12px;
  background-color: #ffffff;
  border: 2px solid #ececec;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pkp_block.block_information .content ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  background-color: #007bff;
  color: #ffffff;
}

.pkp_block.block_information .content ul li a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.content .block_make_submission_link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid #0056b3;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.content .block_make_submission_link:hover {
  background-color: #0056b3;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.content .block_make_submission_link:active {
  background-color: #004085;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

