body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #2c2c2c;
  color: white;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 1rem;
}

.logo {
  height: 40px;
}

.menu-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  height: 60px;
  display: flex;
  align-items: center;
  font-size: 2rem;
  cursor: pointer;
}

.menu-toggle img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}

.fullscreen-menu {
  position: fixed;
  inset: 0;
  background-color: #2e2e2e;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: right;
  letter-spacing: 0.50em;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.fullscreen-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fullscreen-menu .close-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  filter: brightness(0) invert(1);
  position: absolute;
  top: 40px;
  right: 40px;
}

.fullscreen-menu nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 50px;
}

.fullscreen-menu nav a {
  font-size: 3.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  letter-spacing: 0.40em;
}

.fullscreen-menu .social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  margin-top: auto;
}

.fullscreen-menu .social-icons img {
  width: 50px;
  height: auto;
  filter: brightness(0) invert(1);
}

.close-btn {
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  margin-bottom: 10rem;
}

.close-btn img {
  width: 40px;
  height: auto;
  filter: brightness(0) invert(1);
}

.menu-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3rem;
  width: 100%;
}

.social-icons {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

.social-icons img {
  width: 50px;
  height: 50px;
  transition: transform 0.2s ease;
  filter: brightness(0) invert(1);
}

.social-icons img:hover {
  transform: scale(1.1);
}

.menu-links {
  font-family: 'DM Sans', sans-serif;
  font-weight: 200;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: right;
}

.menu-links a {
  color: white;
  font-size: 6rem;
  font-weight: 200;
  letter-spacing: 0.25rem;
  text-decoration: none;
}

.settings-icon {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.settings-icon img {
  width: 35px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
  padding: 6px;
  margin-left: 1rem;
}

.settings-icon img:hover {
  transform: scale(1.1);
}

.settings-menu {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(20px);
  display: flex;
  flex-direction: row-reverse;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  z-index: 1100;
}

.settings-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.settings-menu img {
  width: 35px;
  height: auto;
  filter: brightness(0) invert(1);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.settings-menu img:hover {
  transform: scale(1.1);
}

.language-dropdown {
  position: relative;
  display: inline-block;
}

.language-menu {
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%) translateX(20px);
  display: none;
  flex-direction: row-reverse;
  gap: 1rem;
  margin-top: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1100;
}

.language-menu.open {
  display: flex;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.language-menu.show {
  display: flex;
}

.language-option {
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.2s ease;
  color: white;
  font-weight: 400;
}

.language-option:hover {
  transform: scale(1.1);
}

.language-option.active strong{
  font-weight: 700;
}

#changeLanguage {
  background: none !important;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  outline: none;
}

.settings-sub-icon {
  background: none !important;
  padding: 0 !important;
  border: none !important;
}

.language-dropdown button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.menu-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .menu-container {
    max-width: 90vw;
    padding-inline: 16px;
  }

  .fullscreen-menu {
    letter-spacing: 0.3em;
  }

  .fullscreen-menu nav a {
    font-size: 1.2rem;
  }
}

/* Index */
.hero-slider {
  width: 100%;
  max-width: 1500px;
  aspect-ratio: 14 / 9;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 2;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dot.active {
  background-color: #333;
}

.hero-content {
  padding: 2rem;
}

.hero-content h1 {
  font-size: 2rem;
  font-weight: lighter;
  margin-bottom: 0.5rem;
}

.description {
  color: white;
  font-size: 1rem;
  font-weight: lighter;
  letter-spacing: 0.1rem;
}

.visit-link {
  color: white;
  text-decoration: underline;
  font-size: 0.8rem;
}

.programmation {
  padding: 3rem 2rem;
}

.programmation h2 {
  font-weight: 300;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 8rem;
  justify-content: center;
  margin: 0 auto;
}

.artist-card img {
  width: 100%;
  aspect-ratio: 4 /3;
  object-fit: cover;
}

.artist-card h3 {
  margin: 0.5rem 0 0.2rem;
  font-size: 1rem;
}

.artist-card p {
  font-size: 0.85rem;
  color: white;
}

.newsletter {
  text-align: center;
  font-size: medium;
  padding: 5rem;
}

.newsletter button {
  padding: 1rem 6rem;
  border: 0.8px solid white;
  background: transparent;
  color: white;
  text-transform: uppercase;
  letter-spacing: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter button:hover {
  background: white;
  color: #2c2c2c;
}

  .newsletter-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.newsletter-popup.show {
  display: flex;
}

.popup-content {
  background: #2c2c2c;
  padding: 1.5rem;
  color: white;
  max-width: 900px;
  height: 300px;
  position: relative;
  text-align: center;
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.popup-close img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.popup-title {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  padding: 1rem;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 700px;
  max-width: 80%;
  margin: 3rem auto;
}

.form-row {
  display: flex;
  gap: 0.8rem;
}

.popup-form input[type="text"],
.popup-form input[type="email"] {
  flex: 1;
  padding: 0.7rem;
  font-size: 0.75rem;
  border: none;
  max-width: 100%;
}

.popup-form button {
  align-self: center;
  padding: 0.4rem 2rem;
  background: transparent;
  border: 0.1px solid white;
  color: white;
  cursor: pointer;
  font-size: 0.75rem;
  letter-spacing: 0.2rem;
  transition: background 0.2s;
  border-width: 0.5px;
}

.popup-form button:hover {
  background: white;
  color: #2c2c2c;
}

/* Artistes */
.artists-section {
  padding: 3rem 1rem;
  max-width: 1460px;
  margin: 0 auto;
}

.artists-toolbar {
  position: relative;
  display: flex;
  justify-content: left;
  margin-bottom: 2rem;
}

.artists-toolbar img {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  filter: brightness(0) invert(1);
}

.view-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.toggle-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: filter 0.3s ease;
  position: relative;
}

.view-toggle img:nth-child(2) {
  width: 28px;
  height: 28px;
}

.view-indicator {
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  background-color: white;
  transition: transform 0.3s ease;
}

.artists-grid-page {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px,1fr));
  gap: 8rem;
  transition: all 0.3s ease;
}

.artists-grid-page.list-view {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.artist-entry {
  text-align: center;
}

.artist-entry img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}

.artist-entry a {
  text-decoration: none;
  display: inline-block;
}

.artist-entry a h3 {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  transition: text-decoration 0.3s ease;
  color: #fff;
}

.artist-entry a:hover h3 {
  text-decoration: underline;
}

.artists-grid-page .artist-entry img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.artists-grid-page.grid-view .artist-entry img {
  display: block;
  opacity: 1;
  transition: opacity 0.3s;
}

.artists-grid-page:not(.list-view) .artist-entry:hover img {
  opacity: 0.6;
}

.artists-grid-page.list-view .artist-entry img {
  display: none;
}

.artists-grid-page.list-view {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 2rem 4rem;
}

.artists-grid-page.list-view .artist-entry {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
}

/* Responsive para tablets */
@media (max-width: 1024px) {
  .artists-grid-page {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Responsive para móviles */
@media (max-width: 640px) {
  .artists-grid-page {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .artists-toolbar {
    justify-content: center;
  }
}

/* SECTION ARTISTE */
.artist-hero {
  display: flex;
  min-height: 600px;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 2rem;
  background-color: #fff;
  overflow: hidden;
}

.artist-left {
  flex: 1;
  display: flex;
  overflow: hidden;
}

.artist-left img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 2rem;
  padding-left: 2rem;
  max-width: 600px;
  width: 100%;
  box-sizing: border-box;
}

.artist-info h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 400;
  color: #2c2c2c;
}

.artist-info p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: #2c2c2c;
}

.artist-info button {
  background: none;
  color: #2c2c2c;
  border: 1px solid #2c2c2c;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s;
  align-self: flex-start;
}

.artist-info button:hover {
  background: #2c2c2c;
  color: white;
}

.pdf-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.pdf-modal-content {
  position: relative;
  width: 80%;
  max-width: 700px;
  height: 80%;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pdf-modal-content iframe {
  flex: 1;
  width: 100%;
  border: none;
}

.pdf-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  z-index: 10;
}

@media (max-width: 768px) {
  .artist-hero {
    flex-direction: column;
  }

  .artist-left,
  .artist-info {
    width: 100%;
    max-width: 100%;
  }
}

/* Galería de obras */
.artist-section-title {
  font-weight: 300;
  font-size: 1.5rem;
  margin-bottom: 3rem;
}

.artworks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
  justify-items: center;
  align-items: start;
}

.artwork-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 300px;
}

.artwork-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #2c2c2c;
}
  
.artwork-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.artwork-card .title {
  font-size: 1rem;
  font-weight: 400;
  margin: 0.8rem 0 0 0;
}

.artwork-card .details {
  font-size: 0.8rem;
  color: #ccc;
  margin: 0.2rem 0 0 0;
}

.artwork-card .details:hover {
  text-decoration: underline;
  cursor: pointer;
}

/* Lightbox overlay */
.lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  justify-content: center;
  align-items: center;
  padding: 0;
}

.lightbox-content {
  display: flex;
  max-width: 1000px;
  width: 100%;
  height: 70vh;
  background: transparent;
  color: #fff;
  overflow: hidden;
  position: relative;
  box-shadow: #1e1e1e;
}

.lightbox-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  max-height: 70vh;
  padding: 0;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  transform-origin: center center;
  transition: transform 0.2s ease, transform-origin 0.2s ease;
}

.lightbox-image img {
  max-height: 70vh;
  max-width: none;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0;
  cursor: zoom-in;
}

.lightbox-info {
  width: 550px;
  padding: 8rem 5rem;
  background: #1e1e1e;
  box-sizing: border-box;
  overflow-y: auto;
}

.lightbox-info h3 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: 0.1rem;
}

.lightbox-info .year {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 5rem;
  margin-top: 0;
}

.lightbox-info p {
  margin-bottom: 1rem;
  line-height: 1.4;
  letter-spacing: 0.1rem;
  font-size: 0.9rem;
  color: #aaa;
}

.lightbox-info strong {
  font-weight: 500;
  color: #fff;
}

.lightbox-info button {
  margin-top: auto;
  align-self: start;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.6rem;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  letter-spacing: 1px;
  width: 8rem;
}

.lightbox-info button:hover {
  background: #fff;
  color: #000;
}

.close-lightbox {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
  filter: invert(1);
}

/* Entretien */
.interview-content {
  margin-top: 4rem;
}

.interview-content h1 {
  font-weight: 300;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.interview-content .description {
  column-count: 2;
  column-gap: 3rem;
  line-height: 1.6;
  text-align: justify;
}

.description .question {
  font-weight: bold;
  display: block;
  margin-top: 1rem;
}

/* Footer */
.footer {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: lighter;
  background: #2c2c2c;
  color: #fff;
  padding: 3rem 2rem;
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.footer-column {
  flex: 1;
  min-width: 150px;
}

.footer-column--contact {
  flex: 1.5;
  max-width: 280px;
  font-size: 0.70rem;
  color: white;
}

.footer-logo {
  height: 80px;
  margin: 1.5rem;
  justify-content: center;
  display: block;
}
  
.footer-column h4 {
  font-weight: normal;
  font-size: medium;
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
}
  
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
  
.footer-column ul li {
  margin-bottom: 0.4rem;
  color: white;
}
  
.footer-column p {
  color: white;
  line-height: 1.5;
}
  
.footer-column:first-child p {
  font-weight: normal;
  line-height: 1.2;
}

.footer-column a {
  color: white;
  text-decoration: none;
}

.footer-column a:hover {
  
}

.footer-column--contact a {
  color: white;
  text-decoration: none;
}

.footer-column--contact a:hover {
  text-decoration: underline;
}

/* La galerie */
.gallery-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.gallery-left {
  flex: 1 1 700px;
}

.gallery-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.gallery-info {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  font-size: 0.95rem;
  line-height: 1.2;
}

.gallery-info p {
  margin: 0;
}

.gallery-info a {
  color: white;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.3rem;
  word-break: break-word;
}

.gallery-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.gallery-buttons button {
  border: 1px solid white;
  background: transparent;
  color: white;
  padding: 0.6rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  width: 100%;
  max-width: 220px;
}

.gallery-buttons button:hover {
  background: white;
  color: #2c2c2c;
}

.gallery-text {
  margin-bottom: 5rem;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.7;
}

.gallery-text h2 {
  font-weight: 300;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.gallery-text p {
  margin-bottom: 1.5rem;
}

.gallery-info a,
.team-email {
  transition: all 0.2s ease;
}

.gallery-info a:hover,
.team-email:hover {
  text-decoration: underline;
  cursor: pointer;
}

.team-title {
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  text-align: left;
}

.team {
  display: flex;
  flex-wrap: wrap;
  gap: 20rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.team-member {
  text-align: center;
}

.team-member p {
  margin: 0;
}

.team-name {
  margin-top: 0.7rem;
  margin-bottom: 0.3rem;
  text-align: left;
  font-weight: normal;
}

.team-member img {
  width: 220px;
  margin-bottom: 1rem;
}

.team-email {
  font-size: 0.85rem;
  color: white;
  text-align: left;
  font-weight: lighter;
}

.team-email a {
  color: white;
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.team-email a:hover {
  text-decoration: underline;
  cursor: pointer;
}

/*RESPONSIVE*/
@media (max-width: 1024px) {
  .gallery-hero {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .gallery-info {
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  .gallery-buttons {
    flex-direction: column;
    width: 100%;
  }

  .gallery-buttons button {
  width: auto;
  max-width: 100%;
  align-self: stretch;
}

  .team-member img {
    width: 180px;
  }
}

/* PRESSE */
.press-section {
  background: #2c2c2c;
  color: white;
  margin-top: 0;
}

.press-hero {
  max-width: 1460px;
  margin: 0 auto 1rem;
}

.press-hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.press-content {
  max-width: 1460px;
  margin: 0 auto;
  text-align: center;
}

.press-content h2 {
  font-size: 1.5rem;
  font-weight: 300 !important;
  margin-bottom: 2rem;
  text-align: left;
}

.press-items {
  display: flex;
  gap: 8rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 2rem;
  scrollbar-width: none;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
}

.press-item {
  flex: 0 0 300px;
  text-align: left;
}

.press-item img {
  width: 110%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
}

.press-item h3 {
  font-size: 1rem;
  font-weight: 400;
  margin: 0.5rem 0 0.2rem;
}

.press-item p {
  font-size: 0.8rem;
  font-weight: 300;
  margin: 0.2rem 0;
}

.press-item a {
  font-size: 0.75rem;
  color: white;
  text-decoration: underline;
}

.press-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  overflow: visible;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
  z-index: 10;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-btn.medias.prev {
  left: 6rem;
}

.carousel-btn.medias.next {
  right: 4rem;
}

.carousel-btn.publications.prev {
  left: -4rem;
}

.carousel-btn.publications.next {
  right: -4rem;
}

.press-carousel.publications {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.press-carousel.publications .carousel-wrapper {
  overflow: hidden;
  width: 1200px;
}

.press-carousel.publications .press-items {
  display: flex;
  gap: 8rem;
  flex-wrap: nowrap;
  scroll-behavior: smooth;
  transition: transform 0.3s ease-in-out;
  scrollbar-width: none;
  padding: 0;
}

.press-carousel.publications .press-items::-webkit-scrollbar {
  display: none;
}

.press-carousel.publications .press-item {
  flex: 0 0 300px;
  text-align: left;
}

.press-room-btn-container {
  text-align: center;
  margin-top: 12rem;
  margin-bottom: 4rem;
}

.press-room-btn {
  width: 230px;
  padding: 0.7rem 2rem;
  border: 0.8px solid white;
  background: transparent;
  color: white;
  letter-spacing: 0.3rem;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.3s;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.press-room-btn:hover {
  background: white;
  color: #2c2c2c;
}

/* Responsive */
@media (max-width: 1024px) {
  .press-carousel .press-item {
    flex: 0 0 calc((100% - 24px) / 3);
  }
}

@media (max-width: 768px) {
  .press-carousel .press-item {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .carousel-btn {
    display: none;
  }
}

.press-carousel .press-items::-webkit-scrollbar {
  display: none;
}
.press-carousel .press-items {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

