﻿.corso_pizzica_section {
    position: relative;
    /* padding: 100px 0;*/
    overflow: hidden;
}

.corso_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('/images/pizzica-bg.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.35);
    top: 0;
    left: 0;
    z-index: 0;
}

.corso_pizzica_section .container {
    position: relative;
    z-index: 2;
}

.corso_title {
    color: #c76e4b;
    font-size: 2rem;
    font-weight: bold;
}

    .corso_title span {
        color: #f4c542;
    }

.corso_subtitle {
    color: #000;
    margin-top: 20px;
    font-size: 1rem;
    opacity: 0.9;
}

.corso_content {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* centra verticalmente la colonna della card rispetto all'immagine */
    justify-content: center; /* opzionale, centra orizzontalmente se vuoi */
}

    .corso_content .col-md-6 {
        display: flex;
        flex-direction: column;
        justify-content: center; /* centra verticalmente il contenuto della colonna */
    }

.corso_image_wrapper {
    position: relative;
}

    .corso_image_wrapper img {
        border-radius: 15px;
    }

.corso_image_overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
}

.corso_card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    margin-bottom:2rem;
}

.corso_info_item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

    .corso_info_item i {
        font-size: 22px;
        color: #023b48;
        margin-right: 15px;
    }

    .corso_info_item strong {
        display: block;
    }

    .corso_info_item p {
        margin: 0;
    }

.corso_btn_primary {
    margin-top: 20px;
    background: #f4c542;
    color: black;
    border-radius: 30px;
    padding: 15px 35px;
    font-weight: bold;
    border: none;
    transition: 0.3s;
}

    .corso_btn_primary:hover {
        transform: scale(1.05);
    }


.infoCorsi {
    color: #c76e4b !important;
}