/* Market Aktions CSS */

.market-actions{
    width: 100%;
    background-color: #148ea7;
    padding: 40px;
    color: white;
    text-align: center;
}

.market-actions-wrapper{
    display: flex;
    flex-wrap: no-wrap;
    gap: 40px;
    justify-content: center;
    width: 75%;
    margin: 0 auto;

}

.market-aktion-logo {
    width: 25%;
    text-align: right;
}

.market-aktion-logo img{

    width: auto;
    max-height: 200px;
    height: auto;
}
.market-actions-list{
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.market-action-main{
    display: flex;
    gap: 40px;

}

.market-action-content{

    width: 80%;
    text-align: left;
       
  
}
.market-action-date{
    font-weight: bold;

}
.market-action-badges{

    display: grid;
   grid-template-columns: repeat(1, 1fr);
    gap: 10px;

}
.market-action-badges img{
    max-height: 120px;
    width: auto;

}

.market-actions-btn{
    background-color: white;
    margin: 20px auto;
}
/* Large devices (≤ 1200px) */
@media (max-width: 1200px) {
  /* styles for laptops / smaller desktops */
  .market-actions-wrapper{
    width: 100%;
  }
}

/* Medium devices (≤ 992px) */
@media (max-width: 992px) {
  /* styles for tablets */
  .market-action-main{
    display: flex;
    flex-direction: column;
    gap: 20px;
   
}
.market-action-content{
    width: 100%;
}

.market-action-badges{
    width: 100%;
     grid-template-columns: repeat(3, 1fr);
}

.market-actions-list{
    gap: 40px
}
}

/* Small devices (≤ 768px) */
@media (max-width: 768px) {
  /* styles for large phones */
  .market-action-main{
    gap: 20px;
  }
}

/* Extra small devices (≤ 576px) */
@media (max-width: 576px) {
  /* styles for phones */
  .market-actions-wrapper{
    flex-direction: column;
    gap: 20px;
  }
  .market-actions-list{
    width: 100%;
  }
  .market-aktion-logo {
    width: 100%;
    text-align: center;

}
.market-action-badges{
    display: flex;
    justify-content: center;
}
}


/* Market Aktions Gri CSS */

.market-actions-grid {
    display: grid; 
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.market-grid-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #203c43;
    padding: 20px;
}

.market-grid-badges{
    display: flex;
    gap: 10px;
    justify-content: center;
    width: 100%;
    padding-bottom: 20px;
    margin-top: -20px;
   
}

.market-grid-badge-wrapper{
     width: 33%;
   
}
.market-grid-badges img{
    width: 100%;
    object-fit: contain;
    height: 100%;

}
a.market-grid-btn--bremen{
    background-color: #e37400;
    color: white !important;
     border-color: #e37400 !important;
     font-size: 20px;
}

a.market-grid-btn--bremerhaven{
    background-color:  #148ea7;
    color: white !important;
        border-color:  #148ea7 !important;
        font-size: 20px;
}
a.market-grid-btn--bremen:hover{
    color: #e37400 !important;
    border-color:  #e37400 !important;
    background-color: white;
}
a.market-grid-btn--bremerhaven:hover{
    color: #148ea7 !important;
    border-color:  #148ea7 !important;
    background-color: white;
}
a.market-grid-btn span.button_icon i{
    color: white !important;
}

a.market-grid-btn--bremen:hover span.button_icon i{
    color: #e37400 !important;
}
a.market-grid-btn--bremerhaven:hover span.button_icon i{
    color: #148ea7 !important;
}


@media (max-width: 1440px) {
  /* styles */
  .market-actions-grid {
    grid-template-columns: repeat(3, 1fr);
    }
}


/* Medium devices (≤ 992px) */
@media (max-width: 992px) {
    .market-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* Extra small devices (≤ 576px) */
@media (max-width: 576px) {
    .market-actions-grid {
    padding: 0 20px;
    grid-template-columns: repeat(1, 1fr);

    }
}
