/* Estilos para Notificaciones por Aviso */
.notificaciones-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.notificaciones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.notificacion-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.notificacion-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.notificacion-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    text-decoration: none;
    color: inherit;
    height: 100%;
    min-height: 250px;
    transition: all 0.3s ease;
}

.notificacion-link:hover {
    text-decoration: none;
    color: inherit;
    background-color: #fafafa;
}

.notificacion-icon {
    margin-bottom: 20px;
    flex-shrink: 0;
}

.notificacion-icon .dashicons {
    font-size: 140px;
    width: 140px;
    height: 140px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.notificacion-link:hover .notificacion-icon .dashicons {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.notificacion-title {
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    font-weight: 600;
    max-width: 100%;
    word-wrap: break-word;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    text-align: center;
}

.notificacion-link:hover .notificacion-title {
    color: #2c5aa0;
}

.notificaciones-load-more {
    text-align: center;
    margin-top: 40px;
}

.load-more-button {
    display: inline-block;
    background: #4CAF50;
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.load-more-button:hover {
    background: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    text-decoration: none;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .notificaciones-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .notificacion-icon .dashicons {
        font-size: 120px;
        width: 120px;
        height: 120px;
    }

    .notificacion-link {
        min-height: 220px;
        padding: 25px 15px;
    }

    .notificacion-title {
        font-size: 15px;
    }

    .load-more-button {
        padding: 12px 25px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .notificaciones-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .notificacion-icon .dashicons {
        font-size: 130px;
        width: 130px;
        height: 130px;
    }

    .notificacion-title {
        font-size: 16px;
    }

    .load-more-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}