/*
    - Name: "full.scss"
    - Description: "Add custom styles to Notice Board Full View mode"
*/
/* Media query breakpoints */
.group--full {
  margin-bottom: var(--spacing-lg);
}
.group--full .group__title {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  text-align: center;
}
@media (min-width: 768px) {
  .group--full .group__title {
    gap: var(--spacing-lg);
  }
}
.group--full .type-content {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}
@media (min-width: 768px) {
  .group--full .type-content {
    margin-bottom: var(--spacing-lg);
  }
}
.group--full .type-content p {
  z-index: 1;
  margin: 0;
  padding: var(--spacing-2xs) var(--spacing-md);
  border: 1px solid var(--grey-700);
  border-radius: 300px;
  color: var(--grey-900);
  font-family: var(--title-semi);
  font-size: 1.125rem;
  line-height: 1.5rem;
}
@media (min-width: 768px) {
  .group--full .type-content p {
    min-width: 180px;
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 1.25rem;
    line-height: 1.5rem;
    text-align: center;
  }
}
.group--full .node__content > .field--name-image,
.group--full .node__content > .field--name-video,
.group--full .node__content > .field--name-audio {
  margin-top: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--grey-600);
}
@media (min-width: 768px) {
  .group--full .node__content > .field--name-image,
  .group--full .node__content > .field--name-video,
  .group--full .node__content > .field--name-audio {
    margin-top: var(--spacing-3xl);
    padding-bottom: var(--spacing-3xl);
  }
}
.group--full .node__content > .field--name-image img,
.group--full .node__content > .field--name-video img,
.group--full .node__content > .field--name-audio img {
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 240px;
}
.group--full .group__info {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  justify-content: space-between;
  align-items: flex-start;
  margin: var(--spacing-sm) 0 var(--spacing-sm);
}
@media (min-width: 480px) {
  .group--full .group__info {
    margin: var(--spacing-md) 0 var(--spacing-2xs);
  }
}
@media (max-width: 767px) {
  .group--full .group__info .field--name-author-external {
    flex: 0 1 100%;
    order: 2;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--grey-300);
  }
}
@media (min-width: 768px) {
  .group--full .group__info {
    flex-wrap: inherit;
  }
}
.group--full .field--name-author-external h3 {
  font-family: var(--title-semi);
  font-size: 1.25rem;
  line-height: 1.5rem;
}
.group--full .media-image-caption .field--name-description {
  text-align: right;
}
.group--full .media-image-caption .field--name-description p {
  margin: 6px 0 0;
  color: var(--grey-800);
}
.group--full .media-image-caption .field--name-description a {
  color: var(--grey-800);
  transition: var(--base-trans);
}
.group--full .media-image-caption .field--name-description a:hover {
  opacity: 0.85;
}
.group--full h1 {
  font-size: 2rem;
  line-height: 2.25rem;
  letter-spacing: -0.0195rem;
}
@media (min-width: 480px) {
  .group--full h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 768px) {
  .group--full h1 {
    font-size: 3rem;
    line-height: 3.5rem;
  }
}
.group--full .field--name-created {
  font-family: var(--primary-bold);
  font-size: 1rem;
}
@media (min-width: 768px) {
  .group--full .field--name-created {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}
.group--full .field--name-body-summary-custom {
  max-width: 750px;
  margin: 0 auto;
  font-family: var(--primary-light);
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: -0.0195rem;
}
.group--full .field--name-body-summary-custom p {
  margin-top: 0;
  color: var(--grey-800);
}
.group--full .field--name-body-summary-custom p:last-child {
  margin-bottom: 0;
}
@media (min-width: 480px) {
  .group--full .field--name-body-summary-custom {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media (min-width: 768px) {
  .group--full .field--name-body-summary-custom {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}
.group--full .field--name-body {
  margin: var(--spacing-md) 0;
  color: var(--black);
  font-family: var(--primary-light);
  font-size: 1rem;
  line-height: 1.5rem;
}
@media (min-width: 768px) {
  .group--full .field--name-body {
    margin: var(--spacing-xl) 0;
    font-size: 1.125rem;
  }
}
@media (min-width: 1025px) {
  .group--full .field--name-body {
    margin: var(--spacing-3xl) 0;
    font-size: 1.125rem;
  }
}
.group--full .field--name-body p:last-child {
  margin-bottom: 0;
}
.group--full .field--name-body a {
  color: var(--black);
  transition: var(--base-trans);
}
.group--full .field--name-body a:hover {
  opacity: 0.85;
}
.group--full .social-sharing-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0;
}
@media (min-width: 480px) {
  .group--full .social-sharing-buttons {
    flex-wrap: inherit;
    gap: 20px;
  }
}
@media (min-width: 768px) {
  .group--full .social-sharing-buttons {
    gap: 11px;
    margin-left: auto;
  }
}
@media all and (width <= 360px) {
  .group--full .social-sharing-buttons {
    gap: 11px;
  }
}
.group--full .social-sharing-buttons p {
  flex: 0 1 100%;
  margin: 0;
  color: var(--grey-950);
  font-family: var(--primary-light);
  font-size: 1rem;
  line-height: 1.5rem;
}
@media (min-width: 480px) {
  .group--full .social-sharing-buttons p {
    flex: 0 1 auto;
  }
}
@media (min-width: 768px) {
  .group--full .social-sharing-buttons p {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}
.group--full .social-sharing-buttons__group {
  display: flex;
  gap: 20px;
  margin: 0;
  padding-left: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .group--full .social-sharing-buttons__group {
    gap: 11px;
  }
}
.group--full .social-sharing-buttons__group a {
  display: flex;
  margin: 0;
  justify-content: center;
  align-items: center;
  padding: 9px;
  border: 1px solid var(--grey-800, #333D48);
  border-radius: 50%;
  background-color: var(--yellow-400);
  font-size: 0;
  text-decoration: none;
  transition: var(--base-trans);
}
@media (min-width: 768px) {
  .group--full .social-sharing-buttons__group a {
    padding: 11px;
  }
}
.group--full .social-sharing-buttons__group a span {
  display: none;
}
.group--full .social-sharing-buttons__group a:hover {
  background-color: var(--black);
}
.group--full .social-sharing-buttons__group a:hover::before {
  color: var(--yellow-400);
}
.group--full .social-sharing-buttons__group a::before {
  display: flex;
  align-items: center;
  font-family: "icomoon";
  font-size: 1.25rem;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-display: swap;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--black);
  transition: var(--base-trans);
}
@media (min-width: 768px) {
  .group--full .social-sharing-buttons__group a::before {
    font-family: "icomoon";
    font-size: 1.5rem;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    font-display: swap;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
.group--full .social-sharing-buttons__group a.share-facebook::before {
  content: "\e904";
}
.group--full .social-sharing-buttons__group a.share-x::before {
  content: "\e903";
}
.group--full .social-sharing-buttons__group a.share-linkedin::before {
  content: "\e905";
}
.group--full .social-sharing-buttons__group a.share-whatsapp::before {
  content: "\e910";
}
.group--full .social-sharing-buttons__group a.share-email::before {
  content: "\e90e";
}
@media (min-width: 576px) {
  .group--full {
    margin-top: var(--spacing-lg);
  }
}
@media (min-width: 768px) {
  .group--full {
    margin-bottom: var(--spacing-3xl);
  }
}
.group--full .field--name-label {
  text-align: center;
}
.group--full .layout {
  margin-bottom: var(--spacing-md);
}
@media (min-width: 768px) {
  .group--full .layout {
    margin-bottom: var(--spacing-lg);
  }
}
.group--full .layout.layout--threecol-section--33-34-33 {
  flex-direction: column;
}
@media (min-width: 768px) {
  .group--full .layout.layout--threecol-section--33-34-33 {
    flex-direction: row;
    padding-bottom: var(--spacing-lg);
  }
}
.group--full .layout.layout--threecol-section--33-34-33 .layout__region {
  padding-bottom: var(--spacing-md);
}
@media (min-width: 768px) {
  .group--full .layout.layout--threecol-section--33-34-33 .layout__region {
    padding-right: var(--spacing-md);
  }
}
@media (min-width: 768px) {
  .group--full .layout.layout--threecol-section--33-34-33 .layout__region .block-field-blockgroupresearch-groupcentro-organizacion,
  .group--full .layout.layout--threecol-section--33-34-33 .layout__region .block-field-blockgroupresearch-grouplocalizacion-principal,
  .group--full .layout.layout--threecol-section--33-34-33 .layout__region .block-field-blockgroupresearch-groupunidad-departamento {
    position: relative;
    padding-left: var(--spacing-lg);
  }
}
.group--full .layout.layout--threecol-section--33-34-33 .layout__region .block-field-blockgroupresearch-groupcentro-organizacion .field_label,
.group--full .layout.layout--threecol-section--33-34-33 .layout__region .block-field-blockgroupresearch-grouplocalizacion-principal .field_label,
.group--full .layout.layout--threecol-section--33-34-33 .layout__region .block-field-blockgroupresearch-groupunidad-departamento .field_label {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .group--full .layout.layout--threecol-section--33-34-33 .layout__region .block-field-blockgroupresearch-groupcentro-organizacion .field_label,
  .group--full .layout.layout--threecol-section--33-34-33 .layout__region .block-field-blockgroupresearch-grouplocalizacion-principal .field_label,
  .group--full .layout.layout--threecol-section--33-34-33 .layout__region .block-field-blockgroupresearch-groupunidad-departamento .field_label {
    display: block;
  }
}
.group--full .layout.layout--threecol-section--33-34-33 .layout__region .block-field-blockgroupresearch-groupcentro-organizacion .field_label::before,
.group--full .layout.layout--threecol-section--33-34-33 .layout__region .block-field-blockgroupresearch-grouplocalizacion-principal .field_label::before,
.group--full .layout.layout--threecol-section--33-34-33 .layout__region .block-field-blockgroupresearch-groupunidad-departamento .field_label::before {
  font-family: "icomoon";
  font-size: 1.5rem;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-display: swap;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 768px) {
  .group--full .layout.layout--threecol-section--33-34-33 .layout__region .block-field-blockgroupresearch-groupcentro-organizacion .field_label::before,
  .group--full .layout.layout--threecol-section--33-34-33 .layout__region .block-field-blockgroupresearch-grouplocalizacion-principal .field_label::before,
  .group--full .layout.layout--threecol-section--33-34-33 .layout__region .block-field-blockgroupresearch-groupunidad-departamento .field_label::before {
    position: absolute;
    left: 0;
  }
}
.group--full .layout.layout--threecol-section--33-34-33 .layout__region .block-field-blockgroupresearch-groupcentro-organizacion .field,
.group--full .layout.layout--threecol-section--33-34-33 .layout__region .block-field-blockgroupresearch-grouplocalizacion-principal .field,
.group--full .layout.layout--threecol-section--33-34-33 .layout__region .block-field-blockgroupresearch-groupunidad-departamento .field {
  text-align: center;
}
@media (min-width: 768px) {
  .group--full .layout.layout--threecol-section--33-34-33 .layout__region .block-field-blockgroupresearch-groupcentro-organizacion .field,
  .group--full .layout.layout--threecol-section--33-34-33 .layout__region .block-field-blockgroupresearch-grouplocalizacion-principal .field,
  .group--full .layout.layout--threecol-section--33-34-33 .layout__region .block-field-blockgroupresearch-groupunidad-departamento .field {
    text-align: left;
  }
}
.group--full .layout.layout--threecol-section--33-34-33 .layout__region .block-field-blockgroupresearch-groupcentro-organizacion .field_label::before {
  content: "\e913";
}
.group--full .layout.layout--threecol-section--33-34-33 .layout__region .block-field-blockgroupresearch-grouplocalizacion-principal .field_label::before {
  content: "\e911";
}
.group--full .layout.layout--threecol-section--33-34-33 .layout__region .block-field-blockgroupresearch-groupunidad-departamento .field_label::before {
  content: "\e912";
}
@media (min-width: 768px) {
  .group--full .layout.layout--twocol-section {
    padding-top: var(--spacing-lg);
  }
}
@media (max-width: 767px) {
  .group--full .layout.layout--twocol-section .grid {
    display: flex;
    flex-direction: column-reverse;
  }
}
.group--full .layout.layout--twocol-section .grid .layout__region--first {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}
.group--full .layout.layout--twocol-section .grid .layout__region--second {
  background: white;
  border: 1px solid var(--grey-300);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  height: -moz-fit-content;
  height: fit-content;
}
.group--full .layout.layout--twocol-section .grid .layout__region--second h2 {
  font-family: var(--title-font);
  font-size: 1.25rem;
  line-height: 1.5rem;
}
.group--full .layout.layout--twocol-section .grid .layout__region--second .block-field-blockgroupresearch-groupweb-institucional::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--grey-300);
  margin: var(--spacing-md) 0 var(--spacing-2xs);
}
.group--full .layout.layout--onecol .layout__region {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.group--full .layout .block .field_label {
  font-family: var(--primary-bold);
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 0;
}
.group--full .layout .block .field {
  font-family: var(--primary-light);
  color: var(--grey-700);
}
.group--full .layout .block .field.field--name-label {
  color: var(--grey-950);
}
.group--full .layout .block .field.field--name-descripcion-breve p:first-child {
  margin-top: 0;
}
.group--full .layout .block .field.field--name-descripcion-breve p:last-child {
  margin-bottom: 0;
}
.group--full .layout .block .field.field--name-web-institucional a {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 32px;
  font-family: var(--title-medium);
}
.group--full .layout .block .field.field--name-web-institucional a:hover {
  font-family: var(--title-font);
}
.group--full .layout .block .field.field--name-web-institucional a::after {
  font-family: "icomoon";
  font-size: 1.5rem;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-display: swap;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e909";
  position: absolute;
  right: 0;
}
.group--full .layout .block ul.field__items {
  margin: 0;
  padding: 0;
  list-style: none;
}
.group--full .layout .block ul.field__items li {
  font-family: var(--primary-light);
  color: var(--grey-700);
}
.group--full .layout .block.block-field-blockgroupresearch-grouplinea-investigacion {
  margin-bottom: var(--spacing-xs);
}
.group--full .layout .block.block-field-blockgroupresearch-grouplinea-investigacion .field__items {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  margin: 0;
  padding: 0;
  list-style: none;
}
.group--full .layout .block.block-field-blockgroupresearch-grouplinea-investigacion .field__items .field__item .separator {
  display: inline-block;
  font-size: 0;
  transform: translate(-2px, 2px);
  padding: 0 4px;
  line-height: 0;
}
.group--full .layout .block.block-field-blockgroupresearch-grouplinea-investigacion .field__items .field__item .separator::after {
  font-family: "icomoon";
  font-size: 1rem;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-display: swap;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e908";
}
.group--full .layout .block.block-field-blockgroupresearch-grouplinea-investigacion .field__items .field__item .taxonomy-term {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.group--full .layout .block.block-field-blockgroupresearch-grouplinea-investigacion .field__items .field__item .taxonomy-term.count-1 {
  font-family: var(--primary-bold);
  color: var(--grey-700);
}
@media (min-width: 768px) {
  .group--full .layout .block.block-field-blockgroupresearch-grouplinea-investigacion .field__items .field__item .taxonomy-term .child-separator {
    margin-left: var(--spacing-xs);
    padding-left: var(--spacing-xs);
  }
}
.group--full .layout .block.block-field-blockgroupresearch-grouplinea-investigacion .field__items .field__item .taxonomy-term .child-separator::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: var(--yellow-700);
  position: relative;
  border-radius: 2px;
}
@media (min-width: 768px) {
  .group--full .layout .block.block-field-blockgroupresearch-grouplinea-investigacion .field__items .field__item .taxonomy-term .child-separator::before {
    width: 2px;
    height: 16px;
    top: 3px;
    right: 13px;
  }
}
.group--full .layout .block.block-field-blockgroupresearch-grouplinea-investigacion .field__items .field__item .taxonomy-term .child-separator .separator {
  transform: translate(0px, 2px);
}
.group--full .layout .block.block-field-blockgroupresearch-grouplinea-investigacion .field__items .field__items-group__list {
  list-style: none;
  padding: 0;
}
.group--full .c-button__primary {
  flex-direction: row-reverse;
}
.group--full .c-button__primary::after {
  content: "\e900";
}

body.group-type--research_group main::before {
  content: "";
  position: absolute;
  top: calc(var(--target-bottom-px) * 1px - clamp(1175px, var(--ellipse-height) / var(--base-width) * 100vw, 2000px));
  left: 50%;
  width: clamp(1650px, var(--ellipse-width) / var(--base-width) * 100vw, 3000px);
  height: clamp(1050px, var(--ellipse-height) / var(--base-width) * 100vw, 2000px);
  border-radius: 50%;
  background: rgba(245, 242, 101, 0.2);
  pointer-events: none;
  transform: translateX(-50%);
}
body.group-type--research_group .block-system-breadcrumb-block {
  margin: var(--spacing-2xl) 0 var(--spacing-lg);
}
@media (min-width: 768px) {
  body.group-type--research_group .block-system-breadcrumb-block {
    margin: var(--spacing-3xl) 0 var(--spacing-3xl);
  }
}
/*# sourceMappingURL=full.css.map */
