﻿/* ==========================================================
   MEDIA AGENCY
   BREADCRUMB
   ========================================================== */


.mda-breadcrumb-wrap {
 width: 100%;
 background: #fffdfb;
 border-bottom: 1px solid #eee8e3;
}


.mda-breadcrumb {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 0;
 margin: 0;
 padding: 12px 0;
 list-style: none;
}


.mda-breadcrumb-item {
 display: inline-flex;
 align-items: center;
 color: #77716d;
 font-size: 13px;
 line-height: 1.4;
}


 .mda-breadcrumb-item a {
  color: #77716d;
  text-decoration: none;
  transition: color 0.2s ease;
 }


  .mda-breadcrumb-item a:hover {
   color: var(--mda-orange);
  }


 /* separatore */

 .mda-breadcrumb-item:not(:last-child)::after {
  content: "›";
  display: inline-block;
  margin: 0 9px;
  color: #c4bdb8;
  font-size: 15px;
 }


 /* pagina corrente */

 .mda-breadcrumb-item.current {
  color: #333333;
  font-weight: 600;
 }


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767.98px) {

 .mda-breadcrumb {
  padding: 10px 0;
 }


 .mda-breadcrumb-item {
  font-size: 12px;
 }


  .mda-breadcrumb-item:not(:last-child)::after {
   margin: 0 6px;
  }
}
