/* Estilos para grupos de formación */
.single_department {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.single_department:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.department_content {
    padding: 30px;
}

.department_content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 50px;
}

.department_content h4 a {
    color: #2c4964;
    text-decoration: none;
    transition: color 0.3s;
}

.department_content h4 a:hover {
    color: #3fbbc0;
}

.department_content hr {
    border-top: 2px solid #f0f0f0;
    margin: 15px 0;
}

.blog-info-link {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.blog-info-link li {
    margin-bottom: 12px;
}

.blog-info-link li a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.blog-info-link li a i {
    margin-right: 8px;
    color: #3fbbc0;
    font-size: 16px;
}

.genric-btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.genric-btn.info {
    background: #3fbbc0;
    color: #fff;
    border: 2px solid #3fbbc0;
}

.genric-btn.info:hover {
    background: #2c4964;
    border-color: #2c4964;
}

.genric-btn.circle {
    border-radius: 50px;
}

.genric-btn.small {
    padding: 8px 20px;
    font-size: 13px;
}

.genric-btn.arrow::after {
    content: " →";
    margin-left: 5px;
}
