/* === MODAL (nouvelle structure) === */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.85); /* fond noir semi-transparent */
  z-index: 5000; /* supérieur au header et au menu burger */
  overflow-y: auto;
  padding: 2rem;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: transparent; /* suppression du fond blanc */
  max-width: 1200px;
  width: 90%;
  margin: auto;
  padding: 2rem;
  display: flex;
  flex-direction: row; /* paysage */
  gap: 2rem;
  position: relative;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

.modal-left {
  width: 100%;
}

.modal-right {
  width: 100%;
}

.modal .close {
  position: fixed; /* rend la croix indépendante du contenu */
  top: 2rem;
  left: 2rem;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  color: white;
  z-index: 2000;
}

h2, h3, .modal-title {
  font-family: 'TT Travels Next', sans-serif;
}

.modal-section-title {
  font-family: 'Montserrat Alternates', sans-serif;
}

p, li, .accordion-content {
  font-family: 'Nunito Sans', sans-serif;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Compense la hauteur de la nav sticky */
}
/* Reset de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Polices */
body {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
}

/* Header */
.main-header {
  background-color: white;
  border-bottom: 1px solid #ddd;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 3001;
}

.navbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.monogram {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #001f32;
  position: relative;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: #001f32;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Ajustement pour le bloc d’identité centré */
.nav-identity {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.nav-name {
  font-family: 'TT Travels Next', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #001f32;
}

.nav-role {
  display: block;
  font-size: 0.7rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Grille de portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 60px 40px;
}

.project-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: #ffffff;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 6px;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}

.project-item:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  padding: 0;
  background-color: #f6f6f6;
  transition: transform 0.5s ease;
  transform: scale(0.95); /* nouvelle valeur réduite à l’état initial */
}

.project-item:hover img {
  transform: scale(1); /* zoom jusqu’à remplir le cadre sans dépasser */
}


/* Harmonisation des icônes de catégorie */
.category-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.9);
  color: #001f32;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
  pointer-events: none;
  user-select: none;
}

.project-item:hover .category-icon {
  transform: scale(1.05);
  background-color: rgba(255, 255, 255, 1);
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 31, 50, 0.7);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-item:hover .overlay {
  opacity: 1;
}

.project-info {
  color: white;
  padding: 10px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
}

/* === VIGNETTE VICE VERSA === */
.project-card.viceversa {
  background-image: url('images/viceversa.jpg');
  background-size: cover;
  background-position: center;
}

/* === BASE PROJECT CARD === */
.project-card {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
}

/* Footer */
.main-footer {
  text-align: center;
  padding: 40px;
  font-size: 0.9rem;
  color: #333;
  background-color: #f8f8f8;
  border-top: 1px solid #ddd;
}

.main-footer .footer-name {
  font-family: 'TT Travels Next', sans-serif;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 600px) {
  /* Responsive modale */
  .project-modal {
    padding: 1.5rem 1rem;
    font-size: 0.95rem;
  }

  .project-modal h2 {
    font-size: 1.5rem;
  }
}

/* === MODALES GÉNÉRIQUES POUR PROJETS COURTS === */
.project-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.95);
  color: white;
  padding: 2rem;
  overflow-y: auto;
  z-index: 999;
  animation: fadeIn 0.4s ease-out;
}

.project-modal h2 {
  font-family: 'TT Travels Next', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: white;
}

.project-modal p {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.project-modal .close-btn {
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 2rem;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === MODALES EN DEUX COLONNES === */
.modal-content {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.modal-visual {
  flex: 1 1 30%;
  min-width: 250px;
}

.modal-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.modal-text {
  flex: 1 1 65%;
}


/* === ACCORDÉON POUR MODALES === */
.accordion {
  width: 100%;
  margin-top: 1.5rem;
}

.accordion-item {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion-header {
  background: none;
  border: none;
  width: 100%;
  padding: 1rem 0;
  text-align: left;
  font-size: 1.1rem;
  color: white;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.accordion-header::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

.accordion-header.active {
  font-weight: 700;
}
.accordion-header.active::after {
  content: '−';
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  padding-left: 0.5rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
}

.accordion-body.open {
  opacity: 1;
  padding: 1rem 0;
}

.modal-subimg {
  max-width: 100%;
  height: auto;
  margin: 0.5rem 0;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

/* === FILTRES DE PORTFOLIO === */
.portfolio-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px auto 20px;
  max-width: 1000px;
  /* text-align: center; */ /* Removed to avoid conflict */
}

.filter-btn {
  padding: 10px 18px;
  border: 1px solid var(--color-night-blue, #001f32);
  background-color: white;
  color: var(--color-night-blue, #001f32);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--color-night-blue, #001f32);
  color: white;
  font-weight: 700;
}

/* Responsive adaptation */
@media (max-width: 768px) {
  .portfolio-filters {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
}
/* === BARRE DE TRI STICKY === */
.portfolio-subnav {
  background: linear-gradient(180deg, #ffffff 80%, #f9f9f9 100%);
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 40px 10px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(4px);
  animation: fadeInSlideDown 0.4s ease both;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.5s ease, opacity 0.5s ease;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  top: 100px; /* Reaffirm sticky position below the header */
  position: sticky;
  z-index: 3000; /* Ensure it's above main content */
}

/* Hide with animation and collapse for general hide */
.portfolio-subnav.hide {
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  border: none;
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.5s ease, opacity 0.5s ease;
  display: none;
}

/* Hide specifically when on about section */
.portfolio-subnav.hide-on-about {
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  display: none;
}

/* Removed any display: none on .portfolio-subnav.hide to keep animations */

/* Removed any other display:none on .portfolio-subnav */

/* portfolio-filter-title */
.portfolio-filter-title {
  text-align: center;
  font-family: 'TT Travels Next', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  color: #001f32;
  opacity: 0.9;
}

@keyframes fadeInSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* === SECTION À PROPOS === */
.about-section {
  padding: 80px 40px;
  background-color: #dceefb;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background-color 0.6s ease, opacity 0.6s ease;
}

.about-section h2 {
  font-family: 'TT Travels Next', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #001f32;
  margin-bottom: 20px;
}

.about-section p {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

/* Titres principaux */
h1, h2, h3, h4, h5, h6 {
  font-family: 'TT Travels Next', sans-serif;
  font-weight: 700;
}

/* Variante de titre alternée */
.alternate-title {
  font-family: 'Montserrat Alternates', sans-serif;
}

/* Texte courant, paragraphes, etc. */
p,
.project-modal p,
.accordion-body,
.about-section p {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
}

/* Graisses hiérarchisées */
.filter-btn,
.nav-links a,
.project-info,
.accordion-header {
  font-weight: 600;
}
.nav-name,
.portfolio-filter-title,
h2,
.accordion-header.active,
.filter-btn.active {
  font-weight: 700;
}

@keyframes fadeInFilterBar {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.portfolio-subnav.show {
  animation: fadeInFilterBar 0.4s ease forwards;
}
/* === BOUTON LIEN IMAGONE (about-section) === */
.link-imagone {
  display: inline-block;
  margin: 2rem auto 0;
  padding: 0.75rem 2rem;
  background-color: #A4D4AE; /* Vert pastel doux */
  color: #033B2C; /* Vert profond pour contraste */
  font-weight: 600;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
  max-width: fit-content;
  border: 1px solid #7FBF94;
}

.link-imagone:hover {
  background-color: #91C89F; /* Teinte plus foncée au survol */
  transform: scale(1.05);
}

/* === CONTACT SECTION === */
.contact-section {
  background-color: #E8F1F4;
  padding: 80px 20px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-section .section-title {
  font-family: 'TT Travels Next', sans-serif;
  font-size: 2rem;
  color: #08293C;
  margin-bottom: 1rem;
}

.contact-intro {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.2rem;
  color: #08293C;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 700px;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-button {
  background-color: #B2D4DC;
  color: #08293C;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-button:hover {
  background-color: #9BC4CE;
  transform: translateY(-2px);
}

/* === BOUTON RETOUR HAUT DE PAGE === */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background-color: #B2D4DC; /* pastel harmonisé avec thème landing */
  color: #08293C;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.3s ease;
  z-index: 1000;
}

.back-to-top:hover {
  transform: scale(1.1);
  background-color: #9BC4CE;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.portfolio-grid:has(.project-item:only-child) {
  justify-items: center;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.video-link {
  position: relative;
  display: inline-block;
}

.video-sticker {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #D1481F; /* orange foncé - couleur d’accent Imagone */
  color: #fff;
  padding: 6px 12px;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 10;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: transparent;
  padding: 0;
  border: none;
  z-index: 99999;
  /* Increased to ensure it floats above all */
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(30px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-to-top img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.scroll-to-top:hover img {
  transform: scale(1.1);
}


/* Superposition pour scroll-to-top et modal */
.scroll-to-top {
  z-index: 998;
}
.modal {
  position: fixed;
  z-index: 5000; /* supérieur au header et au menu burger */
}
/* Fin MODAL nouvelle structure */
/* === BARRE DE FILTRES STICKY ET MASQUAGE PAR INTERSECTION === */
.filter-bar {
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 999;
  transition: opacity 0.3s ease;
}
.filter-bar.hidden {
  opacity: 0;
  pointer-events: none;
}

/* === Grille d’images pour séries photo dans les modales (accordéons) === */
.photo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: flex-start;
}

  .photo-grid .modal-subimg {
    flex: 0 0 48%;
    max-width: 48%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
  }

@media (max-width: 768px) {
  .photo-grid .modal-subimg {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* === VISUALISATEUR GRAND FORMAT POUR MODALES === */
.fullscreen-viewer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}

.fullscreen-viewer img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}

.fullscreen-viewer .close-fullscreen {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  font-weight: bold;
  z-index: 3100;
}

@media (max-width: 768px) {
  .fullscreen-viewer img {
    max-width: 95vw;
    max-height: 80vh;
  }
  .fullscreen-viewer .close-fullscreen {
    font-size: 1.5rem;
    top: 1rem;
    right: 1rem;
  }
}

/* === IMAGE VIEWER (plein écran) === */
/* === IMAGE VIEWER (plein écran) === */
.image-viewer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: zoom-out;
}

.image-viewer img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 20px rgba(0,0,0,0.8);
  border-radius: 8px;
}



/* === MENU BURGER SIMPLE === */
.burger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #001f32;
  z-index: 200;
}

/* Menu mobile masqué par défaut */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95); /* blanc avec opacité réduite */
  padding: 2rem;
  gap: 20px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
  z-index: 3000; /* au-dessus des filtres et sticky */
  align-items: center;
  justify-content: center;
}

.mobile-nav a {
  color: #001f32;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.5rem;
}

.mobile-nav li a {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #001f32;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.mobile-nav li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #001f32;
  transition: width 0.3s ease-in-out;
}

.mobile-nav li a:hover::after {
  width: 100%;
}

.mobile-nav {
  list-style: none;
}

.mobile-nav a {
  list-style: none;
}

/* Affichage du menu mobile */
.mobile-nav.show {
  display: flex;
}

/* Responsive : affichage du burger en mobile, masquage de la nav desktop */
@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .nav-identity {
    position: static;
    transform: none;
  }

    .filter-btn {
    font-size: 0.85rem;
    padding: 8px 14px;
  }
}

/* === WRAPPER POUR BARRE DE FILTRES (sticky control) === */
.portfolio-filter-wrapper {
  position: relative;
  height: auto;
}

@media (min-width: 1025px) {
  .portfolio-subnav {
    position: sticky;
    top: 90px;
    z-index: 90;
  }
}
@media (max-width: 768px) {
  .portfolio-subnav {
    padding: 10px 20px 5px;
    gap: 6px;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .filter-btn {
    font-size: 0.85rem;
    padding: 6px 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }
}
body.modal-open header {
  display: none !important;
}
@media (max-width: 768px) {
  .modal h2 {
    font-size: 1.2rem;
    padding: 10px 16px;
    background-color: #f5f5f5;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .project-modal h2,
  .modal-title {
    font-size: 1.4rem;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    display: inline-block;
    margin-bottom: 1rem;
  }
}
/* === INTRODUCTION PORTFOLIO === */
.portfolio-intro {
  max-width: 1000px;
  margin: 0 auto 40px auto;
  padding: 0 40px;
  text-align: center;
}

.portfolio-intro h2 {
  font-family: 'TT Travels Next', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #001f32;
  margin-bottom: 20px;
}

.portfolio-intro p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
}

.link-imagone {
  font-size: 0.9rem;
}

.white-bg {
  background-color: white;
  padding: 8px;
  border-radius: 6px;
  display: block;
  margin: 0 auto;
}