/* ===================== ARCHIVE ======================= */


.gff-collaboration .gff__btn {
  border-radius: 3.9375rem;
  padding: 0.5rem 1rem;
  border: 2px solid #A94E64;
  color: #A94E64;
  display: inline-block;
  width: auto;
  line-height: 1.3rem;
  margin-bottom: 0.2rem;
  margin-top: 0.2rem;
}


.gff-collaboration .gff__btn:hover {
  color: #FFF;
  background-color: #A94E64;
}

.gff__btn.gff__btn__alternative {
  background-color: #A94E64;
  color: #FFF;
}

.gff__btn.gff__btn__alternative:hover {
  color: #A94E64;
  background-color: #FFF;
}

.gff__btn.gff__btn__grey {
  color: #A94E64;
  background-color: #A94E64; 
}

.gff__btn.gff__btn__grey:hover {
  color: #A94E64;
  background-color: #A94E64; 
}


.gff__btn.gff__btn__transparent {
  color: #7e7e7e;
  background-color: #ffffff;
  border-color: #FFF;
}

.gff__btn.gff__btn__transparent:hover {
  border-color: #CCC;
  color: #7e7e7e;
  background-color: #ffffff;
}

/* --- ARCHIVE GRID --- */

.gff-collab-grid {
  padding: 2rem 0;
  background-color: #EAEAEA;
  padding-bottom: 12rem;	
}

.gff-collab-grid__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.gff-collab-grid__title {
  font-size: 2rem;
  font-weight: bold;
  font-family: Montserrat-Bold, sans-serif;
  margin-bottom: 1rem;
  color: #A94E64;
}

.gff-collab-grid__subtitle {
  font-size: 1.125rem;
  color: #000000;
  line-height: 1.6;
  font-weight: bold;
}

.gff-collab-grid__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.7rem;
  max-width: 1024px;
  margin: auto;
  position: relative;
}

.gff-collab-grid__column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gff-collab-grid__subtitle-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  color: #000000;
  font-family: Montserrat-Bold, sans-serif;
}

.gff-collab-grid__card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
}

.gff-collab-grid__card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #000;
  font-family: Montserrat-Bold, sans-serif;
}

.gff-collab-grid__card p {
  font-size: 1rem;
  color: #000;
  line-height: 1.6;
  font-weight: bold;
}

.gff-collab-grid__icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  justify-items: center;
}

.gff-collab-grid__icon img {
  width: 32px;
  height: 32px;
  display: block;
}

/* Grid Connected Dots */

.dots-conector {
    position: absolute;
}

.dots-conector::after {
    content: '';
    position: relative;
    width: 44px; /* Ancho del SVG */
    height: 14px; /* Alto del SVG */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="44" height="14" viewBox="0 0 44 14"><g transform="translate(-744 -732)"><line x1="30" transform="translate(751 739)" fill="none" stroke="%23707070" stroke-width="1"/><circle cx="7" cy="7" r="7" transform="translate(758 732) rotate(90)" fill="%23a94e64"/><circle cx="7" cy="7" r="7" transform="translate(788 732) rotate(90)" fill="%23a94e64"/></g></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    z-index: 1;
}

.gff-collab-grid__grid .dots-conector.dots-conector1 {
	left: calc(50% - 21px);
    top: 25%;

}

.gff-collab-grid__grid .dots-conector.dots-conector2 {
	left: calc(50% - 21px);
    top: 72%;
}

.gff-collab-grid__grid .gff-collab-grid__card .dots-conector.dots-conector-inside-article {
	left: calc(50% - 21px);
    bottom: -20px;
    transform: rotate(90deg);
    z-index: 1;
}

.gff-collab-grid__grid .gff-collab-grid__card:last-child .dots-conector.dots-conector-inside-article,
.gff-collab-grid__column-left .gff-collab-grid__card:nth-child(2) .dots-conector.dots-conector-inside-article {
	display: none;
}


/* Title */

.gff-collab-grid__subtitle-title--with-line {
  	position: relative;
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
    font-family: Montserrat-Bold, sans-serif;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 0 0rem;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 4%;
    margin-left: -35px;
    margin-right: -35px;
    padding-right: 35px;
}

.gff-collab-grid__subtitle-title--with-line::before, .gff-collab-grid__subtitle-title--with-line::after {
    content: '';
    /* position: absolute; */
    top: 50%;
    /* width: 100%; */
    height: 1px;
    background-color: #A94E64;
    flex-grow: 1;
    flex-shrink: 1;
    flex: 1;
    flex-basis: 0%;
}


.gff-collab-grid__subtitle-title--with-line span.dot {
  width: 13px;
  height: 13px;
  background-color: #A94E64;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.gff-collab-grid__subtitle-title--with-line .dot-left {
    left: 0;
}

.gff-collab-grid__subtitle-title--with-line .dot-right {
  right: 35px; /* align with line end */
}


/* Responsive Grid */


@media (max-width: 1024px) {

	.gff-collab-grid__subtitle-title--with-line {
		margin-left: 0;
    	margin-right: 0;
    	padding-right: 0;
	}

	.gff-collab-grid__subtitle-title--with-line .dot-right {
		right: 0px;
	}

    .gff-collab-grid__grid {
        grid-template-columns: 1fr;
        max-width: 100%; 
        flex-direction: column; 
        display: flex; 
    }

    .gff-collab-grid__grid .dots-conector1,
    .gff-collab-grid__grid .dots-conector2 {
        display: none;
    }

    .gff-collab-grid__grid {
        flex-direction: column-reverse; 
        max-width: 800px;
    }

    .gff-collab-grid__grid .gff-collab-grid__card:last-child .dots-conector.dots-conector-inside-article {
    	display: block;
	}
}



/* =============== METHODOLOGY CARDS ================== */


.gff-collab-methodology {
  	padding: 4rem 0;
  	background-color: transparent;
	max-width: 90rem;
	margin: auto;
	padding: 0 25px;
	margin-top: -5rem;
	padding-bottom: 3rem;
}

.gff-collab-methodology .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gff-collab-methodology__intro {
  max-width: 300px;
  margin-bottom: 2rem;
  padding-right: 1.5rem;
  padding-top: 6rem;
  padding-right: 6%;
}

.gff-collab-methodology__title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  font-family: Montserrat-Bold, sans-serif;
}

.gff-collab-methodology__text {
  font-size: 1rem;
  font-weight: bold;
  margin: 1rem 0;
}

.gff-collab-methodology__link {
  display: inline-block;
  font-size: 0.9rem;
  color: #000;
  font-weight: bold;
  text-decoration: underline;
}

.gff-collab-methodology__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding-right: 1.5rem;
}

.gff-collab-methodology__card {
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: #A94E64;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.gff-collab-methodology__card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.gff-collab-methodology__card-body {
  padding: 1rem;
}

.gff-collab-methodology__card-body h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
  font-family: Montserrat-Bold, sans-serif;
}

.gff-collab-methodology__card-body p {
  font-size: 0.9rem;
  font-weight: bold;
  margin: 0;
  color: #FFF;
}



@media (max-width: 1024px) {

	.gff-collab-methodology .container {
		flex-direction: column;
	}

	.gff-collab-methodology__intro {
		width: 100%;
	    max-width: 100%;
	    text-align: center;
	}

	.gff-collab-methodology__cards {
    	grid-template-columns: 1fr 1fr; /* Dos columnas de igual ancho */
	}


	.gff-collab-slider__header {
	  text-align: center;
	  margin-bottom: 2rem;
	}

}


@media (max-width: 640px) {

	.gff-collab-methodology__cards {
    	grid-template-columns: 1fr; /* Dos columnas de igual ancho */
	}

}



/* =============== SLIDER ================== */


.gff-collab-slider {
  padding: 2rem 0;
  background: #f4f4f4;
  position: relative;
}

.gff-collab-slider .container {
	max-width: 90rem;
	margin: auto;
	margin-top: 3rem;
	padding-bottom: 5rem;
}

.gff-collab-slider__header {
  text-align: center;
  margin-bottom: 4rem;
}

.gff-collab-slider__title {
  font-size: 1.5rem;
  font-family: Montserrat-Bold, sans-serif;
  color: #000;
}

.gff-collab-slider__subtitle p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.gff-collab-slider__subtitle a {
  color: #A94E64;
  text-decoration: underline;
}

.gff-collab-slider__wrapper {
  position: relative;
  margin: auto;
  max-width: 90rem;
}

.gff-collab-slider__carousel {
  display: flex;
}

.gff-collab-slider__card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 0 1rem;
  min-height: 250px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  min-height: 360px; /* o el valor que observes como más alto */
  display: flex!important;
  flex-direction: column;
  justify-content: space-between;

}

.gff-collab-slider__card-members {
  font-size: 0.75rem;
  color: #A94E64;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.gff-collab-slider__card-title {
  font-size: 1.125rem;
  font-family: Montserrat-Bold, sans-serif;
  margin-bottom: 0.5rem;
}

.gff-collab-slider__card-text {
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.gff-collab-slider__card-link {
  display: block;
  padding: 0.5rem 1rem;
  border: 2px solid #A94E64;
  color: #A94E64;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.gff-collab-slider__card-link:hover {
  background-color: #A94E64;
  color: white;
}

.gff-collab-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: #000;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 1.5rem;
  line-height: 1.1rem;
}

.gff-collab-slider__arrow.prev {
	  left: -16px;
	}

	.gff-collab-slider__arrow.next {
	  right: -16px;
	}


@media (max-width: 1024px) {

	.gff-collab-slider__arrow.prev {
	  left: 3px;
	}

	.gff-collab-slider__arrow.next {
	  right: 3px;
	}

	.gff-collab-slider__header {
	  text-align: center;
	  margin-bottom: 2rem;
	}

}


/* ========================== FOOTER ============================ */

.gff-collab-footer-cta {
  display: flex;
  flex-wrap: wrap;
  background-color: #A94E64;
  color: #fff;
}

.gff-collab-footer-cta__content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-basis: 50%;
}

.gff-collab-footer-cta__content h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-family: Montserrat-Bold, sans-serif;
}

.gff-collab-footer-cta__content p {
  font-weight: bold;
  margin-bottom: 1.5rem;
      font-size: 1rem;
      color: #FFF;
}

.gff-collab-footer-cta__buttons {
  display: flex;
  gap: 1rem;
}

.gff-collab-footer-cta__buttons .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  border: 2px solid #fff;
  color: #A94E64;
  background-color: #fff;
}

.gff-collab-footer-cta__buttons .btn-secondary {
  background-color: transparent;
  color: #fff;
}

.gff-collab-footer-cta__image {
  flex: 1;
  min-height: 100%;
  max-height: 400px;
  overflow: hidden;
  flex-basis: 50%;
}

.gff-collab-footer-cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .gff-collab-footer-cta {
    flex-direction: column;
  }
}



@media (max-width: 1024px) {

	
	.gff-collab-footer-cta {
	  flex-direction: column-reverse;
	}


}


/* ===================== SINGLE ======================= */

.single-forum .gff__header {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.gff-collab-single-header {
    padding-top: 61px;
    background-color: #9E4359;
    height: 225px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.gff-collab-single-body-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;

}

.gff-collab-single-header .gff-collab-single-header__inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: transparent;
    max-width: 90rem;
    margin: auto;
    padding: 0 25px;
    color: #FFF;
    height: 100%;
    width: 100%;
}


.gff-collab-single-header .breadcrumb {
  font-size: 0.875rem;
  color: #FFF;
}

.gff-collab-single-header h1 {
  font-size: 2.25rem;
  font-weight: bold;
  margin-top: 0.5rem;
  color: #FFF;
  width: 66%;
  padding-right: 2rem;
}


.gff-collab-single-body__inner {
    max-width: 90rem;
    margin: auto;
    padding: 0 25px;
    display: flex;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
}

.gff-collab-single-body__content {
    width: auto;
    flex: 1;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 1;
    padding-right: 3rem;
    padding-top: 1rem;
    padding-bottom: 3rem;
}

.gff-collab-single-body__cta-wrapper {
    margin-top: 30px;
}


.gff-collab-single-body__content h2 {
    font-size: 1.25rem;
}

.gff-collab-single-body__sidebar {
  width: 36%;
  max-width: 500px;
  margin-top: -5rem;
  padding-bottom: 5rem;
}

@media (max-width: 768px) {
.gff-collab-single-body__inner{
      display: flex;
    flex-direction: column-reverse;
}

.gff-collab-single-body__sidebar {
    width: 100%;
    max-width: 768px;
    margin-top: -35px;
    padding-bottom: 48px;
}
.gff-collab-single-body__content {
    padding-left: 3rem;
}
.gff-collab-single-body-header {
flex-direction: column;
}
.gff-collab-single-header{
      padding-bottom: 61px;
    height: 300px;
  
}
  .gff-collab-single-header h1 {
    width: 100%;
padding-right: 0; 
}
.gff-collab-single-body__cta-wrapper {
    display: flex
;
    justify-content: center;
}
}
@media (max-width: 500px) {
  .gff-collab-single-body__content {
    padding-left: 0;
    padding-right: 0;
  }

    .gff-collab-single-header {
        padding-bottom: 75px;
        height: 345px;
    }
}
.stats-box {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  max-width: 100%;
  margin: auto;
}

.stats-box .stat {
  display: inline-block;
  margin: 0 1.5rem 1rem;
}

.stats-box .number {
  display: block;
  font-size: 4rem;
  font-weight: bold;
  color: #A94E64;
  line-height: 1;
  font-family: Montserrat-Bold, sans-serif;
}

.stats-box .label {
  display: block;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.875rem;
  color: #A94E64;
  letter-spacing: 0.5px;
  margin-top: 0.25rem;
}

/* Avatars */
.stats-box .avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.stats-box .avatars img,
.stats-box .avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  font-size: 0.75rem;
  font-weight: bold;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #E0E0E0;
  color: #333;
}

.stats-box .avatars .more {
  background: none;
  color: #A94E64;
  font-weight: bold;
  font-size: 1rem;
}

.stats-box .avatars h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
  color: #000;
  display: block;
  width: 100%;
}

/* Participación */

.stats-box .participate {
  width: 90%;
  margin: auto;
}

.stats-box .participate h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
  color: #000;
}

.stats-box .participate p {
  font-size: 0.875rem;
  color: #333;
  line-height: 1.4;
}



/* ============= COPS ARCHIVE ============ */

.gff-collab-list-of-cops {
  background-color: #f4f4f4;
}

.gff-collab-list-of-cops-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 90rem;
  margin: 0 auto;
  padding: 2rem 25px;
}

.gff-collab-list-of-cops-grid .gff-collab-slider__card {
  margin: 0;
  display: flex;
}

@media (min-width: 600px) {
  .gff-collab-list-of-cops-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gff-collab-list-of-cops-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ======= Drowdown ========== */



.gff-collab-menu-options {
  position: relative;
  display: inline-block;
}


.gff-collab-dropdown-wrapper {
    display: flex;
    flex-direction: row-reverse;
}

.gff-collab-dropdown, .gff-collab-admin-dropdown {
  position: relative;
}

.gff-collab-dropdown-toggle, .gff-collab-admin-dropdown-toggle {
  background-color: transparent;
  border: none;
  color: #A94E64;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
}

.gff-collab-admin-dropdown-toggle {
  color: #333;
}

.gff-collab-dropdown-toggle .arrow,
.gff-collab-admin-dropdown-toggle .arrow {
  margin-left: 5px;
}

.gff-collab-dropdown-menu, .gff-collab-admin-dropdown-menu {
  display: none; /* Oculto por defecto */
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1;
  top: 100%; /* Asegura que el menú esté justo debajo del botón */
  left: 0;
  margin-top: 0; /* Elimina cualquier margen que cause un hueco */
}

.gff-collab-dropdown-menu a, .gff-collab-admin-dropdown-menu a {
  color: #A94E64;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
}

.gff-collab-dropdown-menu a:hover, .gff-collab-admin-dropdown-menu a:hover {
  background-color: #f1f1f1;
}

/* Mostrar el menú al hacer hover sobre el contenedor padre */
.gff-collab-dropdown:hover .gff-collab-dropdown-menu,
.gff-collab-dropdown:hover .gff-collab-admin-dropdown-menu {
  display: block;
}


/* Estilo base para elementos deshabilitados */
.only-for-cop-users,
.only-for-kl-users {
  position: relative; /* Necesario para posicionar el tooltip */
  opacity: 0.5; /* Gris claro para indicar que está deshabilitado */
  cursor: not-allowed; /* Cursor de "no permitido" */
  background-color: #e0e0e0; /* Fondo gris claro */
  color: #666; /* Texto gris oscuro */
}

/* Deshabilita interacciones específicas (en lugar de pointer-events: none) */
.only-for-cop-users a,
.only-for-cop-users button,
.only-for-kl-users a,
.only-for-kl-users button {
 
}

/* Estilo del tooltip */
.only-for-cop-users::after,
.only-for-kl-users::after {
  content: attr(data-tooltip); /* Usa el atributo data-tooltip para el texto */
  position: absolute;
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 10;
  opacity: 0; /* Oculto por defecto */
  transition: opacity 0.3s ease; /* Transición suave */
  top: 0px; /* Posición arriba del elemento */
  left: 70%;
  transform: translateX(-50%);
}

/* Forzar opacidad independiente del padre */
.only-for-cop-users:hover::after,
.only-for-kl-users:hover::after {
  opacity: 1 !important; /* Asegura que el tooltip sea visible */
  pointer-events: none; /* Deshabilita solo los enlaces o botones */
  cursor: not-allowed; /* Cursor de "no permitido" */
}



/* CUstomización Media */


.gff-collaboration .wp-core-ui .attachment .thumbnail .centered img {
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
    max-width: auto;
    max-height: auto;
    /* object-fit: cover; */
}

.gff-collaboration .awsm-embed.button {
  display: none;
}

#menu-item-gallery,
#menu-item-playlist,
#menu-item-video-playlist,
#menu-item-embed {
  diplay: none;
}



/* Forum BB */


.forum-comments-wrapper { margin-top: 2rem; }

.comment-card {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.5rem;
    padding: 23px;
}

.comment-card .comment-children {
  margin-top: 1.5rem;
  margin-bottom: -23px;
}

.comment-card.child-comment {
    margin-right: -23px;
    margin-left: -23px;
    box-shadow: none;
    background: #FFF5F5;
    margin-top: 0;
    margin-bottom: 0px;
    border-top: 1px solid #e7e7e7;
    border-radius: 0px;
    border-bottom: 1px solid #EEE;
    box-shadow: inset 0px 18px 20px 0px rgba(0, 0, 0, 0.05);
}


.comment-header { display: flex; justify-content: space-between; font-size: 0.9rem; color: #666; }
.comment-user { display: flex; align-items: center; margin-top: 1rem; }
.comment-user .avatar { width: 40px; height: 40px; border-radius: 50%; margin-right: 0.75rem; object-fit: cover; }
.user-info { font-size: 0.9rem; }

.comment-content {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.7rem;
    margin-bottom: 35px;
}


.comment-content img {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.comment-content ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.comment-content ul li {
  list-style: disc;
  list-style-position: inside;
}


.like-button {
    display: inline-flex;
    align-items: start;
    justify-content: start;
    gap: 6px;
    border: none;
    background-color: #f5f5f5;
    border-radius: 999px;
    padding: 11px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #a94e64;
    background-image: url(../images/icon-like.svg);
    background-repeat: no-repeat;
    background-position: 29px 10px;
    background-size: 14px;
    padding-right: 34px;
    transition: background-color 0.2s ease;
}

.like-button:hover {
    background-color: #eaeaea;
}


.delete-comment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: #f5f5f5;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    background-image: url(../images/icon-delete.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 35px;
    transition: background-color 0.2s ease;
}

.delete-comment:hover {
    background-color: #eaeaea;
}


.comment-footer { margin-top: 1rem; display: flex; gap: 1rem; }

.reply-form textarea {
    width: 100%;
    height: 101px;
    margin-top: 1rem;
    border-radius: 12px;
    padding: 9px;
    font-size: 14px;
}

.reply-form button { margin-top: 0.5rem; }

.reply-form {
  padding-top: 16px;
  padding-bottom: 16px;
}



/* Espaciado entre campos */
.gff-collaboration .gff-form-acf-front-end .acf-field {
  margin-bottom: 2rem;
}

/* Títulos de campo más claros */
.gff-collaboration .gff-form-acf-front-end .acf-label label {
  font-weight: 600;
  color: #2c2f36;
  font-size: 1rem;
}

/* Texto de ayuda o mensaje */
.gff-collaboration .gff-form-acf-front-end .acf-field-message p {
  background-color: #f6f7f9;
  border-left: 4px solid #a94e64;
  padding: 0.75rem 1rem;
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}

/* Contenedor de cada layout (flexible content) */
.gff-collaboration .gff-form-acf-front-end .acf-field-flexible-content .layout {
  border: 0px solid #e0e0e0;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

/* Título del layout flexible (ej: Bulletin Board) */
.gff-collaboration .gff-form-acf-front-end .acf-fc-layout-handle {
  background-color: #f0f0f0;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

/* Botón de agregar fila/tab */
/* Botón estilo 'Add Comment' */
.gff-collaboration .gff-form-acf-front-end .acf-button.button-primary {
  background-color: transparent;
  color: #a94e64;
  border: 2px solid #a94e64;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}

.gff-collaboration .gff-form-acf-front-end input[type="submit"].acf-button.button-primary {
  background-color: #a94e64;
  color: #fff;
  border: 2px solid #a94e64;
}

/* Hover efecto: invertir colores */
.gff-collaboration .gff-form-acf-front-end .acf-button.button-primary:hover {
  background-color: #a94e64;
  color: #fff;
  border-color: #a94e64;
}


/* Mejorar visibilidad de selects */
.gff-collaboration .gff-form-acf-front-end .acf-field select {
  min-height: 38px;
  padding: 6px 10px;
  font-size: 14px;
}

/* Editor WYSIWYG */
.gff-collaboration .gff-form-acf-front-end .acf-editor-wrap {
  border: 1px solid #dcdcdc;
  border-radius: 4px;
}

.gff-collaboration .gff-form-acf-front-end .acf-fields>.acf-field {
  padding-right: 0;
  padding-left: 0;
}

.gff-collaboration .acf-field-cta-repeater .acf-fields.-left > .acf-field {
      padding-bottom: 15px;
      margin-bottom: 0px;
}

.single-forum .gff-collab-new-post.gff-collab-bulletin #message.updated,
.single-forum .gff-collab-new-post.gff-collab-discussion #message.updated {
  display: none;
}

.gff-collaboration .acf-field-6021f97f6da6c,
.gff-collaboration .acf-field-627d611605aae,
.gff-collaboration .acf-field-comment-forum,
.gff-collaboration .acf-field-comment-creator {
  display: none;
}

.gff-collaboration .acf-field-community-content-flexible .acf-fields {
  padding: 15px;
}


.gff-collaboration .acf-field-community-content-flexible .acf-actions {
  padding-top: 20px;
}



.gff-popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.gff-popup {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 90%;
}

.gff-popup-avatars {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 1rem 0;
}

.gff-popup-avatars img {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.gff-popup-text {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.gff-popup-content-dev {
  text-align: left;
  color: #000;
  font-weight: normal;
}

.gff-popup-content-dev p {
  color: #000;
}


/* ============== Calendar Tab ============== */

.gff-collaboration #gff-collaboration-calendar.gff-calendar-loaded .gff-collaboration-calendar-past-calendar {
  opacity: 1;
}


.gff-collaboration .gff-collaboration-calendar-month {
  border-top: 1px solid #CCC;
  padding: 25px 0px;
}

.gff-collaboration .gff-collaboration-calendar .gff-collaboration-calendar-month-title {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 25px;
  display: block;
}

.gff-collaboration .gff-collaboration-calendar h4 {
  margin-bottom: 10px;
}

.gff-collaboration .gff-collaboration-calendar-day {
  display: flex;
  padding-bottom: 21px;
}

.gff-collaboration .gff-collaboration-calendar-col-left {
  width: 27%;
  padding-right: 5%;
}

.gff-collaboration .gff-collaboration-calendar-col-right {
  font-size: 14px;
}

.gff-collaboration .gff-collaboration-calendar .gff-collaboration-calendar-day-title {
  font-size: 14px;
  color: #A84F65;
  font-weight: bold;
  display: block;
  width: 100%;
  margin-bottom: 15px;
}

.gff-collaboration .gff-collaboration-calendar .add-to-calendar-button {
  background-color: #F5F5F5;
  border-radius: 50px;
  padding: 9px 15px;
  color: #343434;
  font-size: 14px;
}

.gff-collaboration .gff-calendar-hide-past .gff-collaboration-calendar-past-calendar {
  display: none;
}

.gff-collaboration #gff-collaboration-calendar.gff-calendar-loaded #calendar_message_no_event_future {
  display: block;
}

.gff-collaboration #calendar_message_no_event_future {
  display: none;
}

.gff-collaboration #gff-collaboration-calendar.gff-calendar-loaded.gff-calendar-hide-no-future #calendar_message_no_event_future {
  display: none;
}

@media (max-width: 600px) {
  .gff-collaboration .gff-collaboration-calendar-day-title {
    font-size: 12px;
  }
}

/**
 * ++++++++++++++++++++++
 * Add to Calendar Button
 * ++++++++++++++++++++++
 *
 * Style: Default
 *
 * Version: 1.15.3
 * Creator: Jens Kuerschner (https://jenskuerschner.de)
 * Project: https://github.com/add2cal/add-to-calendar-button
 * License: MIT with “Commons Clause” License Condition v1.0
 */

.gff-collaboration .atcb {
  display: none;
}



/* ============== resources ======================= */




.gff-collaboration .resources-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 16px 0;
}

@media (max-width: 1024px) {
  .gff-collaboration .resources-wrapper {
    grid-template-columns: 1fr;
  }
}

.gff-collaboration .card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease-in-out;
}


.gff-collaboration .card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gff-collaboration .card-category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.gff-collaboration .card.learning-color .card-category {
    color: #f3b545 !important;
}

.gff-collaboration .card.knowledge-color .card-category {
    color: #01a19a!important;
}

.gff-collaboration .card-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #000;
}

.gff-collaboration .card-description {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
}

.gff-collaboration .card-date {
  font-size: 12px;
  color: #888;
  margin-bottom: 24px;
}

.gff-collaboration .card-button {
    text-transform: uppercase;
    background: transparent;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.gff-collaboration .card.learning-color .card-button {
    border: 1px solid #f3b545;
    color: #f3b545;
}

.gff-collaboration .card.knowledge-color .card-button {
    color: #01a19a;
    border: 1px solid #01a19a;
}

.gff-collaboration .card.learning-color .card-button:hover {
    background-color: #f3b545!important;
    color: #FFF!important;
}

.gff-collaboration .card.knowledge-color .card-button:hover {
    color: #fff!important;
    background-color: #01a19a!important;
}



.gff-collaboration .archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
  color: #222;
}

.gff-collaboration .archive-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

.gff-collaboration .archive-list a {
  color: inherit;
  text-decoration: none;
}

.gff-collaboration .archive-list a:hover {
  text-decoration: underline;
}


.gff-collaboration .tab-description {
  margin-bottom: 25px;
}
