/**
 * Widget: link-to-page|v02
 * Stylesheet card layout
 */

/* Container principale */
.link-to-page-v02 {
    padding: 40px 0;
    background: #1a1a1a;
}

/* Titolo sezione */
.link-to-page-v02 .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
}

/* Colonna card */
.link-to-page-v02 .col-12,
.link-to-page-v02 .col-md-6,
.link-to-page-v02 .col-lg-4 {
    margin-bottom: 30px;
}

/* Card servizio */
.card-service {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Icona card */
.card-service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-service-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Titolo card */
.card-service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

/* Contenuto card */
.card-service-content {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.card-service-content p {
    margin-bottom: 1rem;
}

.card-service-content p:last-child {
    margin-bottom: 0;
}

/* Link/Bottone card */
.card-service-link {
    margin-top: auto;
}

.card-service-link .stdButton {
    display: inline-block;
    width: 100%;
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
    .link-to-page-v02 {
        padding: 40px 0;
    }

    .link-to-page-v02 .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .card-service {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .link-to-page-v02 {
        padding: 30px 0;
    }

    .link-to-page-v02 .section-title {
        font-size: 1.75rem;
        margin-bottom: 25px;
    }

    .link-to-page-v02 .col-12 {
        margin-bottom: 20px;
    }

    .card-service {
        padding: 20px;
    }

    .card-service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .card-service-title {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .card-service-content {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
}
