/* Głowny kontener bloku */
.block_pills.block {
    background: transparent;
    margin-bottom: 30px;
    border: none;
    box-shadow: none;
}

/* Sekcja z kafelkami */
.block-pills-section {
    padding: 20px 0;
}

/* Tytuł sekcji */
.block-pills-title {
    color: #3B7FC4;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* Kontener na kafelki */
.pills-container {
    margin-left: -15px;
    margin-right: -15px;
}

/* Pojedynczy kafelek */
.pill-item {
    padding: 0 15px;
}

/* Wrapper kafelka */
.pill-wrapper {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pill-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Kontener na obrazek */
.pill-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Link kafelka */
.pill-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Obrazek kafelka */
.pill-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.pill-wrapper:hover .pill-image {
    transform: scale(1.05);
}

/* Zawartość tekstowa kafelka */
.pill-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* Nazwa kafelka */
.pill-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #3B7FC4;
    margin-bottom: 10px;
    line-height: 1.4;
    text-align: center;
}

/* Opis kafelka */
.pill-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
    text-align: center;
}

/* Wyrównanie wysokości kafelków */
.pills-container {
    align-items: stretch;
}

.row.pills-container {
    margin: 0 -10px;
}

/* Dodatkowy styl dla nagłówka bloku */
.block-pills-container .card-body {
    padding: 0;
}

/* Dostosowanie dla pełnej szerokości */
.block_pills .content {
    padding: 0 !important;
}

.block_pills {
    padding: 0 !important;
    margin: 0 !important;
}

.block_pills .card-body {
    padding: 0 !important;
}

/* Responsywność */
@media (max-width: 575px) {
    .pill-item {
        padding: 0 15px;
    }

    .pills-container {
        margin: 0 -15px;
    }
}

@media (max-width: 767px) {
    .block-pills-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .pill-image-wrapper {
        height: 180px;
    }
}