/* Akciók shortcode stílusok */

.akciok-container {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.akcio-item {
    display: flex;
    flex-direction: row;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
        gap: 50px;
    transition: box-shadow 0.3s ease;
}

.akcio-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.akcio-content {
    flex: 3;
}

.akcio-image {
    width: 100%;
        flex: 1;
}

.akcio-featured-image {
    width: 100%;
    height: auto;
    border-radius: 10px !important;
    object-fit: cover;
}

.no-image-placeholder {
    width: 100%;
    height: 200px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    border-radius: 6px;
    font-style: italic;
}




.akcio-title {
    font-family: "Spectral", Sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0px;
    color: #A57884;
}

.akcio-description {
    margin-bottom: 20px;
    font-family: "Montserrat", Sans-serif;
    font-weight: 400;
    letter-spacing: 0.08px;
    color: #272C2C;
    font-size: 14px;
        width: 85%;
    line-height: 24px;
        border-bottom: 1px solid #e2e2e2;
    padding-bottom: 25px;
}
.akcio-description p {
    margin-bottom: 10px;
}

.akcio-description p:last-child {
    margin-bottom: 0;
}

.akcio-date {
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Montserrat", Sans-serif;
    font-weight: 400;
    letter-spacing: 0.08px;
    color: #272C2C;
    font-size: 16px;
}

.akcio-date svg {
    width: 33px;
    height: auto;
    flex-shrink: 0;
    fill: #a57884;
}

.akcio-prices {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.normal-ar {
    font-family: "Montserrat", Sans-serif;
    font-weight: 400;
    letter-spacing: 0.08px;
    color: #272C2C;
    font-size: 14px;
}

.akcios-ar {
    font-family: "Spectral", Sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0px;
    color: #A57884;
}

.no-akciok {
    text-align: center;
    font-size: 18px;
    color: #666;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin: 0;
}

p.telefonszamszoveg {
    font-family: "Montserrat", Sans-serif;
    font-weight: 400;
    letter-spacing: 0.08px;
    color: #272C2C;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Alsó szekció: árak + telefonszám */
.akcio-bottom-section {
    display: flex;
    align-items: center;
    gap: 100px;
    margin-top: 20px;
}

.akcio-contact {
    flex-shrink: 0;
}

.phone-link {
    display: inline-flex;
    font-family: "Spectral", Sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0px;
    color: #A57884;
}

/* Tablet és nagyobb képernyők */
@media (max-width: 767px) {
    .akcio-item {
     flex-direction: column;
        align-items: flex-start;
                gap: 15px;
    }
    
    .akcio-image {
        width: 100%;
        margin-right: 30px;
        margin-bottom: 0;
    }

    .akcio-description {
    width: 100%;
}
    
    .akcio-content {
        width: 100%;
    }
    
    .akcio-prices {
                flex-direction: column;
                    align-items: flex-start;
          gap: 0px;
    }

    .akcio-date {
    margin-bottom: 0px;
}
    
.akcio-bottom-section {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 20px;
    flex-direction: column;
}
    
    .phone-link {
        font-size: 18px;
    }
    
    .normal-ar {
        flex: 1;
    }
    
    .akcios-ar {
        flex: 1;
    }
}

