/* Γενικά Στυλ για το Icon List Block */
.icon-list {
    padding: 0;
    margin: 0;
    list-style: none; /* Αφαιρούμε τις λίστες */
}

.icon-list-item {
    display: flex;
    padding: 10px;
    border-radius: 5px;
}


.icon-wrapper {
    margin-right: 15px; /* Απόσταση μεταξύ του εικονιδίου και του κειμένου */
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
}

.icon-wrapper img {
    margin-top: 5px;
    width: 35px;
    height: 35px;
    object-fit: contain;
    display: block;
}



.icon-list-item:hover .icon-wrapper img {
}

.text-wrapper {
    display: flex;
    flex-direction: column; /* Ο τίτλος και η περιγραφή εμφανίζονται κάτω από τον τίτλο */
}

.text-wrapper h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: var(--off-orange);
}

.text-wrapper p {
    margin: 5px 0 0;
    color: var(--off-orange);
    font-size: 20px;
}

.text-wrapper .description a{
    text-decoration: none;
}

.text-wrapper .description p {
    margin: 5px 0 0;
}

.text-wrapper a{transition: var(--main-ease);}
.text-wrapper a:hover{
	color: var(--bio-green);
}

@media screen and (max-width: 1024px) {
  .text-wrapper h3 {font-size: 16px;}
}

@media screen and (max-width: 768px) {
    .text-wrapper p{font-size: 16px !important;}
    .icon-wrapper img{width: 25px; height: 25px;}
    .icon-wrapper{margin-right: 0px;}
    .icon-list-item{padding: 0;}
}