.section-5-lg {
    position: relative;
    border-radius: 16px;
    height: 600px;
    min-height: 600px;
    max-height: 600px;
}
.section-5-lg .img-container {
    display: block;
    height: 290px;
    width: 100%;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    overflow: hidden;

}
.section-5-lg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.section-5-lg .title {
    font-family: "Big Shoulders", Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.2em;
    text-decoration: none;
}
.section-5-lg .title a {
    color: rgb(44, 47, 49);
    text-decoration: none;
    transition: color 0.3s ease; /* Színváltás animáció */
}
.section-5-lg .title a:hover {
    color: var(--primary);
    text-decoration: underline;
}
.section-5-lg .title {
    color: rgb(44, 47, 49);
    text-decoration: none;
    transition: color 0.3s ease; /* Színváltás animáció */
}
.section-5-lg .title:hover {
    color: var(--primary);
    text-decoration: underline;
}
.section-5-lg .date {
    margin-top: 30px;
    margin-bottom: 10px;
    font-family: "EB Garamond", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #999;
}
.section-5-lg .date a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease; /* Színváltás animáció */
}
.section-5-lg .date a:hover {
    color: #666;
    text-decoration: none;
}
.section-5-lg .text {
    margin-top: 20px;
    margin-bottom: 50px;
    font-family: "EB Garamond", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(96, 96, 96);
}

.section-5-lg .save-btn-container{
    position: absolute;
    bottom: 0;
    right: 5px;
    padding: 20px;
}

.save-btn-container img:hover{
    cursor: pointer;
}

.feed-content{
    min-height: unset;
    max-height: unset;
}

/* @media (min-width: 1200px) and (max-width: 1399px) {
    .section-5-lg .img-container {
        height: 220px;
        width: 100%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .section-5-lg .img-container {
        height: 180px;
        width: 100%;
    }
} */

@media (min-width: 992px) {
    .feed-content{
        min-height: 240px;
        max-height: 240px;
        overflow: hidden;
        padding: auto;
    }
}


.section-5-lg .text {
    overflow: hidden;
    position: relative;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;     /* hány sor után pontozzon ki */
}

@media (max-width: 576px) {
    .section-5-lg .text {
        -webkit-line-clamp: 2;   /* telefonon 2 sor után pontozza ki */
    }
}

.section-5-lg .title {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;     /* hány sor után pontozzon ki */
}

.section-5-lg .date {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;     /* hány sor után pontozzon ki */
}


