/*!******************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/blocks/publications/latest-publication/style.scss ***!
  \******************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/**
 * Latest Publication sub-block — SELF-CONTAINED frontend styles.
 *
 * Includes all detail/subpage/download card/preview styles
 * so this block works on pages WITHOUT the parent publications block.
 */
/* ═══════════════════════════════════════
   LISTING — card + heading
   ═══════════════════════════════════════ */
.br-latest-pub__heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}
.br-latest-pub__card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1rem;
  max-width: 50%;
  border: none;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 0 1.5rem rgba(169, 202, 216, 0.078);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
  transform-origin: center center;
}
.br-latest-pub__card:hover {
  box-shadow: 0 0 1.5rem rgba(31, 167, 217, 0.212);
  transform: translateY(-2px);
}
.br-latest-pub__card:focus-visible {
  outline: 2px solid #0076a1;
  outline-offset: 2px;
}
.br-latest-pub__cover {
  flex: 0 0 120px;
  width: 120px;
  min-height: 160px;
  border-radius: 4px;
  overflow: hidden;
  background: #f1f5f9;
}
.br-latest-pub__cover img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.br-latest-pub__cover-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 160px;
  color: #94a3b8;
}
.br-latest-pub__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 0.25rem;
}
.br-latest-pub__title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  color: #1e293b;
}
.br-latest-pub__card:hover .br-latest-pub__title {
  color: #0076a1;
}
.br-latest-pub__year {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 400;
}
.br-latest-pub__desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #475569;
  margin: 0.25rem 0 0;
}
.br-latest-pub__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0076a1;
  text-decoration: none;
}
.br-latest-pub__view-all:hover {
  text-decoration: underline;
}
.br-latest-pub__view-all svg {
  transition: transform 0.15s ease;
}
.br-latest-pub__view-all:hover svg {
  transform: translateX(2px);
}
.br-latest-pub__empty {
  color: #94a3b8;
  font-style: italic;
  font-size: 0.9rem;
}
.br-latest-pub__loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
  color: #64748b;
  font-size: 0.9rem;
}

.br-latest-pub-hidden {
  display: none !important;
}

/* ═══════════════════════════════════════
   DETAIL LAYOUT — two columns
   (shared class names from parent block)
   ═══════════════════════════════════════ */
.br-latest-pub .br-pub-detail {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.br-latest-pub .br-pub-detail__left {
  flex: 0 0 220px;
  max-width: 220px;
}
.br-latest-pub .br-pub-detail__left > * {
  max-width: 100%;
}

.br-latest-pub .br-pub-detail__right {
  flex: 1 1 0%;
  min-width: 0;
}

/* Separator between cover and download cards */
.br-latest-pub .br-pub-detail__left .br-pub-subpage__downloads {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 2px solid #009cd6;
}

.br-latest-pub .br-pub-detail__left .br-pub-dl-cards {
  max-width: 100%;
}

.br-latest-pub .br-pub-detail__left .br-pub-dl-card {
  width: 100%;
  box-sizing: border-box;
}

/* ═══════════════════════════════════════
   SUBPAGE — breadcrumb + detail view
   ═══════════════════════════════════════ */
.br-latest-pub .br-pub-subpage__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 1.5rem rgba(169, 202, 216, 0.078);
  padding: 12px 20px;
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 1.4;
  color: #888;
}

.br-latest-pub .br-pub-subpage__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid #0076a1;
  border-radius: 4px;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  box-shadow: 0 0 1.5rem rgba(169, 202, 216, 0.078);
  background-color: transparent;
  font-size: 1rem;
  font-weight: 500;
  color: #0076a1;
  cursor: pointer;
  font-family: inherit;
  transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
  white-space: nowrap;
}
.br-latest-pub .br-pub-subpage__back svg {
  flex-shrink: 0;
  stroke: #0076a1;
}
.br-latest-pub .br-pub-subpage__back:hover {
  box-shadow: 0 0.375rem 0.625rem rgba(31, 167, 217, 0.212);
  transform: translateY(-2px);
}

.br-latest-pub .br-pub-subpage__breadcrumb-sep {
  color: #bbb;
  font-weight: 300;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.br-latest-pub .br-pub-subpage__breadcrumb-current {
  color: #333;
  font-weight: 600;
  font-size: 16px;
  min-width: 0;
}

.br-latest-pub .br-pub-subpage__content {
  gap: 32px;
}

.br-latest-pub .br-pub-subpage__cover img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.br-latest-pub .br-pub-subpage__title {
  display: none;
}

.br-latest-pub .br-pub-subpage__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin: 0 0 12px;
  font-size: 14px;
  color: #555;
}
.br-latest-pub .br-pub-subpage__meta span:empty {
  display: none;
}

.br-latest-pub .br-pub-subpage__year {
  font-weight: 600;
}

.br-latest-pub .br-pub-subpage__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin: 0 0 24px;
}
.br-latest-pub .br-pub-subpage__desc:empty {
  display: none;
}

.br-latest-pub .br-pub-subpage__downloads {
  margin-bottom: 20px;
}

.br-latest-pub .br-pub-subpage__editions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.br-latest-pub .br-pub-subpage__editions-label {
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

/* ═══════════════════════════════════════
   DOWNLOAD CARDS
   ═══════════════════════════════════════ */
.br-latest-pub .br-pub-dl-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 50%;
}

.br-latest-pub .br-pub-dl-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 2px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 16px 20px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 1.5rem rgba(169, 202, 216, 0.078);
  cursor: pointer;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.br-latest-pub .br-pub-dl-card:hover {
  box-shadow: 0 0.375rem 0.625rem rgba(31, 167, 217, 0.212);
  transform: translateY(-2px);
}

.br-latest-pub .br-pub-dl-card[data-preview-url] {
  position: relative;
}

.br-latest-pub .br-pub-dl-card.is-previewing {
  background-color: #f0f9ff;
  box-shadow: inset 3px 0 0 0 #0ea5e9, 0 0 1.5rem rgba(169, 202, 216, 0.078);
}

.br-latest-pub .br-pub-dl-card__icon {
  grid-row: 1/-1;
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.br-latest-pub .br-pub-dl-card__label {
  grid-row: 1;
  grid-column: 2;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.3;
}

.br-latest-pub .br-pub-dl-card__price {
  grid-row: 2;
  grid-column: 2;
  font-size: 13px;
  color: #0076a1;
}

.br-latest-pub .br-pub-dl-card__dl-icon {
  grid-row: 1/-1;
  grid-column: 3;
  display: flex;
  align-items: center;
  opacity: 0.35;
  transition: opacity 0.2s;
}

.br-latest-pub .br-pub-dl-card:hover .br-pub-dl-card__dl-icon {
  opacity: 1;
}

/* ═══════════════════════════════════════
   PDF PREVIEW PANE
   ═══════════════════════════════════════ */
.br-latest-pub .br-pub-preview {
  border-top: 2px solid #009cd6;
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  padding-top: 20px;
}

.br-latest-pub .br-pub-preview__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 12px;
}

.br-latest-pub .br-pub-preview__title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.br-latest-pub .br-pub-preview__zoom {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.br-latest-pub .br-pub-preview__zoom-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  background: #fff;
  color: #64748b;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.br-latest-pub .br-pub-preview__zoom-btn:hover {
  background: #e5f5fb;
  border-color: #009cd6;
  color: #009cd6;
}

.br-latest-pub .br-pub-preview__zoom-level {
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  min-width: 40px;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.br-latest-pub .br-pub-preview__viewport {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.br-latest-pub .br-pub-preview__iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

.br-latest-pub .br-pub-preview__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.85rem;
  padding: 3rem 2rem;
  text-align: center;
}
.br-latest-pub .br-pub-preview__empty svg {
  opacity: 0.4;
}

/* ═══════════════════════════════════════
   SHARED UTILITY — spinner, cover placeholder,
   loading, no-dl, edition buttons
   ═══════════════════════════════════════ */
.br-latest-pub .br-pub__spinner-small {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(26, 151, 197, 0.15);
  border-top-color: #1a97c5;
  border-radius: 50%;
  animation: br-latest-pub-spin 0.8s linear infinite;
}

@keyframes br-latest-pub-spin {
  to {
    transform: rotate(360deg);
  }
}
.br-latest-pub .br-pub-modal__cover-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 3px;
}

.br-latest-pub .br-pub-modal__loading {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #94a3b8;
  font-size: 0.88rem;
  padding: 1rem 0;
}

.br-latest-pub .br-pub-modal__no-dl {
  color: #94a3b8;
  font-style: italic;
  font-size: 0.88rem;
  margin: 0;
}

.br-latest-pub .br-pub-modal__edition-btn {
  padding: 0.3rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a97c5;
  background: none;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s;
}
.br-latest-pub .br-pub-modal__edition-btn:hover {
  background: #1a97c5;
  color: #fff;
  border-color: #1a97c5;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  .br-latest-pub__card {
    max-width: 100%;
  }
  .br-latest-pub .br-pub-detail {
    flex-direction: column;
  }
  .br-latest-pub .br-pub-detail__left {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
  .br-latest-pub .br-pub-preview__iframe {
    height: 400px;
  }
}
@media (max-width: 600px) {
  .br-latest-pub .br-pub-subpage__content {
    flex-direction: column;
    gap: 20px;
  }
  .br-latest-pub .br-pub-subpage__cover {
    width: 160px;
  }
  .br-latest-pub .br-pub-subpage__breadcrumb {
    padding: 10px 14px;
    font-size: 13px;
  }
  .br-latest-pub .br-pub-subpage__back span {
    display: none;
  }
  .br-latest-pub .br-pub-subpage__back {
    padding: 0.5rem 0.6rem;
  }
  .br-latest-pub .br-pub-subpage__breadcrumb-current {
    font-size: 14px;
  }
  .br-latest-pub .br-pub-dl-cards {
    max-width: 100% !important;
    width: 100% !important;
  }
  .br-latest-pub .br-pub-dl-card {
    padding: 14px 16px;
  }
}
@media (max-width: 480px) {
  .br-latest-pub__card {
    flex-direction: column;
    gap: 0.75rem;
  }
  .br-latest-pub__cover {
    flex: none;
    width: 100%;
    min-height: 180px;
  }
}

/*# sourceMappingURL=style-index.css.map*/